We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
here my check fails: in withdrawals test in self_destructing_account.json the transaction json is
"transactions" : [ { "data" : "0x0200", "gasLimit" : "0x0186a0", "gasPrice" : "0x0a", "nonce" : "0x00", "secretKey" : "0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", "to" : "0x0000000000000000000000000000000000000100", "value" : "0x00" } ],
but the one enocded in RLP is
RLP transaction number: 1 { "data" : "0x0000000000000000000000000000000000000000000000000000000000000200", "gasLimit" : "0x0186a0", "gasPrice" : "0x0a", "nonce" : "0x00", "to" : "0x0000000000000000000000000000000000000100", "value" : "0x00", "v" : "0x26", "r" : "0xfd75940662272e5daac655a822b10f101866916a2975c3821111ad4ab481d48b", "s" : "0x67a11d0fcd31933ad4b62b4d6fd4f1540f93406d501e41b82ff59223303f60c5" }
pyspec removed leading zeroes in data field when writing rlp data to json.
The text was updated successfully, but these errors were encountered:
#105
Sorry, something went wrong.
No branches or pull requests
here my check fails:
in withdrawals test in self_destructing_account.json the transaction json is
but the one enocded in RLP is
pyspec removed leading zeroes in data field when writing rlp data to json.
The text was updated successfully, but these errors were encountered: