diff options
author | Yoichi Hirai <i@yoichihirai.com> | 2017-06-28 21:13:45 +0800 |
---|---|---|
committer | Yoichi Hirai <i@yoichihirai.com> | 2017-06-28 21:13:45 +0800 |
commit | 674ba3feaec3cf20038fd8e264f0729c8f5c90e7 (patch) | |
tree | ddbf0dd8158f3d1b7a2dd0359e16503b3434bc0e /src | |
parent | b9c7079ed7d29c99f5ea0bcc6ed981da43d598db (diff) | |
download | dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar.gz dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar.bz2 dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar.lz dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar.xz dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.tar.zst dexon-tests-674ba3feaec3cf20038fd8e264f0729c8f5c90e7.zip |
Add a test about RETURNDATACOPY after a successful CREATE should throw exception if offset is not zero
Diffstat (limited to 'src')
-rw-r--r-- | src/GeneralStateTestsFiller/stReturnDataTest/returndatacopy_following_successful_createFiller.json | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/src/GeneralStateTestsFiller/stReturnDataTest/returndatacopy_following_successful_createFiller.json b/src/GeneralStateTestsFiller/stReturnDataTest/returndatacopy_following_successful_createFiller.json new file mode 100644 index 000000000..07400fc74 --- /dev/null +++ b/src/GeneralStateTestsFiller/stReturnDataTest/returndatacopy_following_successful_createFiller.json @@ -0,0 +1,60 @@ +{ + "returndatacopy_following_successful_create" : { + "env" : { + "currentCoinbase" : "0x2adc25665018aa1fe0e6bc666dac8fc2697ff9ba", + "currentDifficulty" : "0x20000", + "currentGasLimit" : "0x0a00000000", + "currentNumber" : "0x01", + "currentTimestamp" : "0x03e8", + "previousHash" : "0x5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6" + }, + "expect" : [ + { "indexes" : { + "data" : -1, + "gas" : -1, + "value" : -1 + }, + "network" : ["ALL"], + "result" : { + "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { + "storage" : { + "0x00" : "0x02" + } + } + } + } + ], + "pre" : { + "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : { + "balance" : "0x00", + "code" : "{ (create (STOP)) (RETURNDATACOPY 0 1 32) (SSTORE 0 (MLOAD 0)) }", + "nonce" : "0x00", + "storage" : { + "0x00" : "0x02" + } + }, + "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b" : { + "balance" : "0x6400000000", + "code" : "", + "nonce" : "0x00", + "storage" : { + } + } + }, + "transaction" : { + "data" : [ + "" + ], + "gasLimit" : [ + "0x0a00000000" + ], + "gasPrice" : "0x01", + "nonce" : "0x00", + "secretKey" : "0x45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8", + "to" : "0x0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6", + "value" : [ + "0x00" + ] + } + } +} |