mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Check State
State tests with expect section
This commit is contained in:
parent
adba4fb9a1
commit
2e71a91323
@ -170,10 +170,8 @@ void ImportTest::importState(json_spirit::mObject& _o, State& _state)
|
|||||||
stateOptionsMap importedMap;
|
stateOptionsMap importedMap;
|
||||||
importState(_o, _state, importedMap);
|
importState(_o, _state, importedMap);
|
||||||
for (auto& stateOptionMap: importedMap)
|
for (auto& stateOptionMap: importedMap)
|
||||||
{
|
|
||||||
assert(stateOptionMap.second.isAllSet()); //check that every parameter was declared in state object
|
assert(stateOptionMap.second.isAllSet()); //check that every parameter was declared in state object
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void ImportTest::importTransaction(json_spirit::mObject& _o)
|
void ImportTest::importTransaction(json_spirit::mObject& _o)
|
||||||
{
|
{
|
||||||
@ -256,10 +254,14 @@ void ImportTest::checkExpectedState(State const& _stateExpect, State const& _sta
|
|||||||
{
|
{
|
||||||
map<u256, u256> stateStorage = _statePost.storage(a.first);
|
map<u256, u256> stateStorage = _statePost.storage(a.first);
|
||||||
for (auto const& s: _stateExpect.storage(a.first))
|
for (auto const& s: _stateExpect.storage(a.first))
|
||||||
{
|
|
||||||
CHECK(stateStorage[s.first] == s.second,
|
CHECK(stateStorage[s.first] == s.second,
|
||||||
"Check State: " << a.first << ": incorrect storage [" << s.first << "] = " << toHex(stateStorage[s.first]) << ", expected [" << s.first << "] = " << toHex(s.second));
|
"Check State: " << a.first << ": incorrect storage [" << s.first << "] = " << toHex(stateStorage[s.first]) << ", expected [" << s.first << "] = " << toHex(s.second));
|
||||||
}
|
|
||||||
|
//Check for unexpected storage values
|
||||||
|
stateStorage = _stateExpect.storage(a.first);
|
||||||
|
for (auto const& s: _statePost.storage(a.first))
|
||||||
|
CHECK(stateStorage[s.first] == s.second,
|
||||||
|
"Check State: " << a.first << ": incorrect storage [" << s.first << "] = " << toHex(s.second) << ", expected [" << s.first << "] = " << toHex(stateStorage[s.first]));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (addressOptions.m_bHasCode)
|
if (addressOptions.m_bHasCode)
|
||||||
|
@ -8,6 +8,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x044852b2a670ade5407e78fb2863c51de9fcb96542a07186fe3aeda6bb8a116d",
|
||||||
|
"0x02" : "0x13600b294191fc92924bb3ce4b969c1e7e2bab8f4c93c3fc6d0a51733df3c060"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -42,6 +50,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -59,7 +73,7 @@
|
|||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
"gasLimit" : "285000",
|
"gasLimit" : "2850000",
|
||||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87",
|
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87",
|
||||||
"value" : "10",
|
"value" : "10",
|
||||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||||
@ -76,6 +90,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc6",
|
||||||
|
"0x01" : "0xad7c5bef027816a800da1736444fb58a807ef4c9603b7848673f7e3a68eb14a5",
|
||||||
|
"0x02" : "0x6ca54da2c4784ea43fd88b3402de07ae4bced597cbb19f323b7595857a6720ae"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
|
@ -8,6 +8,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -50,6 +56,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -92,6 +104,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "3000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "100000",
|
"balance" : "100000",
|
||||||
@ -176,6 +197,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -224,6 +252,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0401",
|
||||||
|
"0x01" : "0x01",
|
||||||
|
"0x02" : "0x0fa3e9"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -271,6 +308,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x02" : "0x03e9"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -298,7 +343,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"data" : "",
|
"data" : "",
|
||||||
@ -320,6 +364,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -368,6 +419,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0401",
|
||||||
|
"0x01" : "0x01",
|
||||||
|
"0x02" : "0x0fa3e9"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -415,6 +475,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x02" : "0x03e9"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -442,7 +510,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"data" : "",
|
"data" : "",
|
||||||
@ -465,6 +532,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -485,7 +558,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -507,6 +579,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -549,6 +627,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"add11" : {
|
"add11" : {
|
||||||
|
"env" : "Environment parameters for test execution",
|
||||||
"env" : {
|
"env" : {
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
@ -8,6 +9,32 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : "Expected post state result (may be not defined at all)",
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000100000",
|
||||||
|
"code" : "0x6001600101600055",
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x02"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "41012",
|
||||||
|
"code" : "0x",
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "999999999999858988",
|
||||||
|
"code" : "0x",
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"pre" : "Previous state before execution",
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -24,6 +51,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"transaction" : "could also be defiend via v,r,s instead of secretKey",
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"data" : "",
|
"data" : "",
|
||||||
"gasLimit" : "400000",
|
"gasLimit" : "400000",
|
||||||
|
@ -10,18 +10,11 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
"balance" : "32599",
|
"balance" : "32599"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "67401",
|
"balance" : "67401",
|
||||||
"code" : "0x",
|
"nonce" : "1"
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -57,11 +50,7 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "22177",
|
"balance" : "22177"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -97,11 +86,7 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "1000000",
|
"balance" : "1000000"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -136,18 +121,11 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
"balance" : "40000",
|
"balance" : "40000"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "10000",
|
"balance" : "10000",
|
||||||
"code" : "0x",
|
"nonce" : "1"
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -183,25 +161,7 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"0000000000000000000000000000000000000000" : {
|
"0000000000000000000000000000000000000000" : {
|
||||||
"balance" : "15",
|
"balance" : "15"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "11198",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
|
||||||
"balance" : "88787",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -236,26 +196,11 @@
|
|||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "22204",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : {
|
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : {
|
||||||
"balance" : "1",
|
"balance" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "77795",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -291,18 +236,10 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
"balance" : "23000",
|
"balance" : "23000"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "77000",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -339,24 +276,10 @@
|
|||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1",
|
"balance" : "1",
|
||||||
"code" : "0x602060006000f0",
|
"nonce" : "1"
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "53016",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "946983",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
"balance" : "0",
|
"balance" : "0",
|
||||||
@ -407,30 +330,18 @@
|
|||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1",
|
"balance" : "1",
|
||||||
"code" : "0x3060025560206000600039602060006000f0",
|
|
||||||
"nonce" : "41",
|
"nonce" : "41",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x02" : "0x095e7baea6a6c7c4c2dfeb977efac326af552d87"
|
"0x02" : "0x095e7baea6a6c7c4c2dfeb977efac326af552d87"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"1a4c83e1a9834cdc7e4a905ff7f0cf44aed73180" : {
|
"1a4c83e1a9834cdc7e4a905ff7f0cf44aed73180" : {
|
||||||
"balance" : "0",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x02" : "0x1a4c83e1a9834cdc7e4a905ff7f0cf44aed73180"
|
"0x02" : "0x1a4c83e1a9834cdc7e4a905ff7f0cf44aed73180"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "400000",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"8e3411c91d5dd4081b4846fa2f93808f5ad19686" : {
|
"8e3411c91d5dd4081b4846fa2f93808f5ad19686" : {
|
||||||
"balance" : "0",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x02" : "0x8e3411c91d5dd4081b4846fa2f93808f5ad19686"
|
"0x02" : "0x8e3411c91d5dd4081b4846fa2f93808f5ad19686"
|
||||||
@ -478,35 +389,15 @@
|
|||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1",
|
"balance" : "1",
|
||||||
"code" : "0x6b600c600055602060406000f0600052600c60146000f0",
|
"nonce" : "1"
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "105049",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"62c01474f089b07dae603491675dc5b5748f7049" : {
|
"62c01474f089b07dae603491675dc5b5748f7049" : {
|
||||||
"balance" : "0",
|
"nonce" : "0"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99894951",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
"balance" : "0",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0x0c"
|
"0x" : "0x0c"
|
||||||
@ -554,37 +445,19 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "998",
|
|
||||||
"code" : "0x74600c60005566602060406000f060205260076039f36000526015600b6001f06000556000600060006000600160005461c350f1",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "133284",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"62c01474f089b07dae603491675dc5b5748f7049" : {
|
"62c01474f089b07dae603491675dc5b5748f7049" : {
|
||||||
"balance" : "0",
|
"nonce" : "0"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99866716",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
"balance" : "2",
|
"balance" : "2",
|
||||||
"code" : "0x602060406000f0",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0x0c"
|
"0x" : "0x0c"
|
||||||
@ -633,30 +506,16 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "111",
|
|
||||||
"code" : "0x74600c60005566602060406000f060205260076039f36000526015600b6001f06000556000600060006000600c6000546000f1",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "103566",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99896434",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
"balance" : "1",
|
"balance" : "1",
|
||||||
"code" : "0x602060406000f0",
|
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0x0c"
|
"0x" : "0x0c"
|
||||||
@ -705,25 +564,10 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "0",
|
"nonce" : "0"
|
||||||
"code" : "0x74600c60005566602060406000f060205260076039f36000526015600b6001f0600055600060006000600060006000546000f1",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "83139",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99916861",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -769,30 +613,16 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "999",
|
|
||||||
"code" : "0x74600c60005566602060406000f060205260076039f36000526015600b6001f0600055600060006000600060006000546103e8f1",
|
|
||||||
"nonce" : "1",
|
"nonce" : "1",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "95566",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99904434",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
"balance" : "1",
|
"balance" : "1",
|
||||||
"code" : "0x602060406000f0",
|
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
"0x" : "0x0c"
|
"0x" : "0x0c"
|
||||||
@ -841,25 +671,10 @@
|
|||||||
},
|
},
|
||||||
"expect" : {
|
"expect" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "10000",
|
"nonce" : "0"
|
||||||
"code" : "0x74600c60005566602060406000f060205260076039f36000526015600b620186a0f0600055",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
|
||||||
"balance" : "58028",
|
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "0",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "99941972",
|
"nonce" : "1"
|
||||||
"code" : "0x",
|
|
||||||
"nonce" : "1",
|
|
||||||
"storage" : {
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
@ -902,11 +717,25 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"194f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x15"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "100000",
|
"balance" : "1000000",
|
||||||
"code" : "{(CALL 2000 0xb94f5374fce5edbc8e2a8697c15331677e6ebf0b 0 30 1 31 1) (RETURN 30 2)}",
|
"code" : "",
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"194f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "0",
|
||||||
|
"code" : "{(CALL 2000 0xb94f5374fce5edbc8e2a8697c15331677e6ebf0b 0 30 1 31 1) [[0]](MLOAD 0) (RETURN 30 2)}",
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
}
|
}
|
||||||
@ -923,12 +752,12 @@
|
|||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"data" : "",
|
"data" : "",
|
||||||
"gasLimit" : "41000",
|
"gasLimit" : "300000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||||
"to" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
"to" : "194f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
"value" : "1"
|
"value" : "0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -941,11 +770,26 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"194f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x15",
|
||||||
|
"0x01" : "0x3f"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "1000000",
|
"balance" : "1000000",
|
||||||
"code" : "{(MSTORE 0 0x15)(CALL 7000 0xb94f5374fce5edbc8e2a8697c15331677e6ebf0b 0 0 32 32 32) (SSTORE 0 (MLOAD 0 64))(RETURN 0 64)}",
|
"code" : "",
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"194f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "0",
|
||||||
|
"code" : "{(MSTORE 0 0x15)(CALL 7000 0xb94f5374fce5edbc8e2a8697c15331677e6ebf0b 0 0 32 32 32) [[0]](MLOAD 0) [[1]](MLOAD 32) (RETURN 0 64)}",
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"storage" : {
|
"storage" : {
|
||||||
}
|
}
|
||||||
@ -966,8 +810,8 @@
|
|||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||||
"to" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
"to" : "194f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
"value" : "1"
|
"value" : "0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,6 +8,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -49,6 +56,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -90,6 +104,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -132,6 +153,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -151,7 +179,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -173,6 +200,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -214,6 +247,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -255,6 +294,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -296,6 +342,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -337,6 +390,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -378,6 +438,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -420,6 +487,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -461,6 +535,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -502,6 +582,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -543,6 +629,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -584,6 +677,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -603,7 +703,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -625,6 +724,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -644,7 +750,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -666,6 +771,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -685,7 +797,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -707,6 +818,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -726,7 +844,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -748,6 +865,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -780,7 +904,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"log2_nonEmptyMem_logMemSize1_logMemStart31": {
|
"log2_nonEmptyMem_logMemSize1_logMemStart31": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
@ -790,6 +913,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -809,7 +939,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -831,6 +960,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -850,7 +985,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -872,6 +1006,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -891,7 +1031,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -913,6 +1052,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -954,6 +1100,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -995,6 +1148,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1014,7 +1174,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1036,6 +1195,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1055,7 +1221,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1077,6 +1242,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1096,7 +1268,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1118,6 +1289,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1160,6 +1338,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1179,7 +1364,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1201,6 +1385,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1220,7 +1410,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1242,6 +1431,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1261,7 +1456,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1283,6 +1477,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1302,7 +1503,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1324,6 +1524,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1343,7 +1550,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1365,6 +1571,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1384,7 +1597,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1406,6 +1618,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1425,7 +1644,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1447,6 +1665,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1466,7 +1691,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1488,6 +1712,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1507,7 +1738,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1529,6 +1759,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1548,7 +1785,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1561,7 +1797,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"log4_nonEmptyMem_logMemSize1_logMemStart31": {
|
"log4_nonEmptyMem_logMemSize1_logMemStart31": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
@ -1571,6 +1806,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1590,7 +1832,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1612,6 +1853,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1631,7 +1878,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1653,6 +1899,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1672,7 +1924,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1694,6 +1945,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1713,7 +1971,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1735,6 +1992,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1754,7 +2018,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1776,6 +2039,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1795,7 +2065,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -1817,6 +2086,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1836,7 +2112,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
|
@ -8,6 +8,12 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -42,6 +48,12 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -76,6 +88,12 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -110,6 +128,13 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0100000020"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -144,6 +169,12 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"post" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
|
@ -7,6 +7,15 @@
|
|||||||
"currentDifficulty" : "256",
|
"currentDifficulty" : "256",
|
||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
|
"0x01" : "0x01",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
@ -42,6 +51,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
|
"0x01" : "0x01",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -77,6 +95,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -111,6 +137,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
|
"0x01" : "0x01",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -145,6 +180,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -179,6 +220,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -213,6 +260,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -247,6 +301,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -281,6 +342,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -315,6 +383,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xe4319f4b631c6d0fcfc84045dbcb676865fe5e13",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -349,6 +425,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xec4916dd28fc4c10d78e287ca5d9cc51ee1ae73cbfde08c6b37324cbfaac8bc5"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -383,6 +466,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -417,6 +508,17 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000002" : {
|
||||||
|
"balance" : "19"
|
||||||
|
},
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xe3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "200000000",
|
"balance" : "200000000",
|
||||||
@ -451,6 +553,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xcb39b3bde22925b2f931111130c774761d8895e0e08437c9b396c1e97d10f34d",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -485,6 +595,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x7392925565d67be8e9620aacbcfaecd8cb6ec58d709d25da9eccf1d08a41ce35",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -519,6 +637,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xaf9613760f72635fbdb44a5a0a63c39f12af30f950a6ee5c971be188e89c4051",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -553,6 +679,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xaf9613760f72635fbdb44a5a0a63c39f12af30f950a6ee5c971be188e89c4051",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -587,6 +721,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -621,6 +762,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -655,6 +803,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x9c1185a5c5e9fc54612808977ee8f548b2258d31",
|
||||||
|
"0x02" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -689,6 +845,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -723,6 +885,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xf34578907f"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -757,6 +926,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -791,6 +967,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -825,6 +1008,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -848,7 +1038,6 @@
|
|||||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||||
"data" : ""
|
"data" : ""
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,6 +8,20 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "13003"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "2271987",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -44,6 +58,21 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x17"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "26006"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "973984",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -80,6 +109,21 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000000",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "26005"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "473995",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -101,7 +145,7 @@
|
|||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
"gasLimit" : "26005",
|
"gasLimit" : "26005",
|
||||||
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87",
|
"to" : "095e7baea6a6c7c4c2dfeb977efac326af552d87",
|
||||||
"value" : "0",
|
"value" : "10",
|
||||||
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
"secretKey" : "45a915e4d060149eb4365960e6a7a45f334393093061116b197e3240065ff2d8",
|
||||||
"data" : ""
|
"data" : ""
|
||||||
}
|
}
|
||||||
@ -116,6 +160,19 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "13003"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "37197",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -152,6 +209,19 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "23015"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "76985",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -192,6 +262,21 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x0a" : "0x01",
|
||||||
|
"0x0b" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "43021"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "56979",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -232,6 +317,20 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x0a" : "0x8000000000000000000000000000000000000000000000000000000000000000",
|
||||||
|
"0x0b" : "0x0de0b6b3a7640000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "45600"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "54400"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -273,6 +372,19 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x0b" : "0x0de0b6b3a7640000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "38105"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "61895"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -314,6 +426,23 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x0a" : "0x01",
|
||||||
|
"0x0b" : "0x01",
|
||||||
|
"0x16" : "0x984476",
|
||||||
|
"0x17" : "0x96bd58"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "70566"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "9929434",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -363,6 +492,22 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "2000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "20534"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "99979456",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -407,6 +552,22 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "2000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "20534"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "99979456",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -449,6 +610,20 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "10502"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "99989488",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -485,6 +660,21 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "21002"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "99978998",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
|
"balance" : "1000000000000000000",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -521,6 +711,22 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "2000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "20566"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "99979424",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -565,6 +771,26 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "31070"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1968920",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -609,6 +835,26 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000010",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "31069"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "68921",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -653,6 +899,26 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000000",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "31069"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "268931",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"aaae7baea6a6c7c4c2dfeb977efac326af552aaa" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
|
@ -206,7 +206,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -272,7 +272,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -337,7 +337,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -416,7 +416,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -479,7 +479,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -543,7 +543,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "350000",
|
"gasLimit" : "350000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -598,7 +598,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "testRecursiveMethods()",
|
"data" : "testRecursiveMethods()",
|
||||||
"data" : "0x981a3165",
|
"data" : "0x981a3165",
|
||||||
"gasLimit" : "30000",
|
"gasLimit" : "30000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -653,7 +653,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "testInfiniteLoop()",
|
"data" : "testInfiniteLoop()",
|
||||||
"data" : "0x296df0df",
|
"data" : "0x296df0df",
|
||||||
"gasLimit" : "300000",
|
"gasLimit" : "300000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -732,7 +732,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run(uint256)",
|
"data" : "run(uint256)",
|
||||||
"data" : "0xa444f5e90000000000000000000000000000000000000000000000000000000000000004",
|
"data" : "0xa444f5e90000000000000000000000000000000000000000000000000000000000000004",
|
||||||
"gasLimit" : "300000",
|
"gasLimit" : "300000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -811,7 +811,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run(uint256)",
|
"data" : "run(uint256)",
|
||||||
"data" : "0xa444f5e90000000000000000000000000000000000000000000000000000000000000204",
|
"data" : "0xa444f5e90000000000000000000000000000000000000000000000000000000000000204",
|
||||||
"gasLimit" : "300000",
|
"gasLimit" : "300000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
@ -866,7 +866,7 @@
|
|||||||
},
|
},
|
||||||
"transaction" :
|
"transaction" :
|
||||||
{
|
{
|
||||||
"//" : "run()",
|
"data" : "run()",
|
||||||
"data" : "0xc0406226",
|
"data" : "0xc0406226",
|
||||||
"gasLimit" : "300000",
|
"gasLimit" : "300000",
|
||||||
"gasPrice" : "1",
|
"gasPrice" : "1",
|
||||||
|
@ -8,6 +8,17 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"balance" : "1000000000000000000"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "771500"
|
||||||
|
},
|
||||||
|
"aaaaaaaaace5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1000000000000000000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -49,6 +60,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
"balance" : "1000",
|
"balance" : "1000",
|
||||||
|
@ -8,6 +8,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -42,6 +50,14 @@
|
|||||||
"currentTimestamp" : "2",
|
"currentTimestamp" : "2",
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"nonce" : "2",
|
||||||
|
"storage" : {
|
||||||
|
"0xebcce5f60530275ee9318ce1eff9e4bfee810172" : "0x02"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -78,6 +94,13 @@
|
|||||||
"currentTimestamp" : "2",
|
"currentTimestamp" : "2",
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -112,6 +135,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "10000",
|
"balance" : "10000",
|
||||||
@ -146,6 +176,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -180,6 +218,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -205,7 +251,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"createNameRegistratorZeroMemExpansion": {
|
"createNameRegistratorZeroMemExpansion": {
|
||||||
"env" : {
|
"env" : {
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6",
|
||||||
@ -215,6 +260,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -249,6 +302,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -283,6 +344,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -317,6 +385,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -351,6 +426,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -385,6 +467,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -405,7 +495,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -427,6 +516,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -447,7 +543,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -469,6 +564,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -489,7 +591,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -511,6 +612,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -531,7 +640,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -553,6 +661,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -595,6 +710,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -636,6 +758,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -677,6 +806,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -760,6 +896,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x80"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -802,6 +946,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -822,7 +975,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -844,6 +996,14 @@
|
|||||||
"currentTimestamp" : "1",
|
"currentTimestamp" : "1",
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -857,7 +1017,6 @@
|
|||||||
"code" : "",
|
"code" : "",
|
||||||
"storage": {}
|
"storage": {}
|
||||||
}
|
}
|
||||||
|
|
||||||
},
|
},
|
||||||
"transaction" : {
|
"transaction" : {
|
||||||
"nonce" : "0",
|
"nonce" : "0",
|
||||||
@ -879,6 +1038,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -921,6 +1087,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -962,6 +1135,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1003,6 +1183,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1045,6 +1232,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1086,6 +1280,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1127,6 +1328,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1167,6 +1377,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1207,6 +1426,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1247,6 +1475,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0401",
|
||||||
|
"0x01" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1281,6 +1517,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1315,6 +1557,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1349,6 +1597,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "20000000",
|
"balance" : "20000000",
|
||||||
@ -1383,6 +1637,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1999999999999979496",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1417,6 +1677,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1999999999999979496",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1451,6 +1717,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"4f5374fce5edbc8e2a8697c15331677e6ebf0baa" : {
|
||||||
|
"balance" : "1000000000000100000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1485,6 +1756,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1999999999999979496"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1519,6 +1795,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "999999999999879496"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1553,6 +1834,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"aa1722f3947def4cf144679da39c4c32bdc35681" : {
|
||||||
|
"balance" : "1000000000000100000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1587,6 +1873,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "999999999999889499",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1726,6 +2018,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1767,6 +2065,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1808,6 +2112,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1849,6 +2160,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1890,6 +2207,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa" : "0xfffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffa"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1924,6 +2248,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x24" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x26" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -1965,6 +2301,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x26" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x29" : "0x02"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2006,6 +2354,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x30"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x2f"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2047,6 +2407,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x30"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x2f"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1025000",
|
"balance" : "1025000",
|
||||||
@ -2088,6 +2460,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"945304eb96065b2a98b57a48a06ae28d285a71b5" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x26" : "0x01"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2129,6 +2508,17 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x24" : "0x01"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2170,6 +2560,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0186a0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2204,6 +2601,13 @@
|
|||||||
"currentTimestamp": 1,
|
"currentTimestamp": 1,
|
||||||
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0de0b6b3a76586a0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre": {
|
"pre": {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87": {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87": {
|
||||||
"balance": "1000000000000000000",
|
"balance": "1000000000000000000",
|
||||||
@ -2238,6 +2642,13 @@
|
|||||||
"currentTimestamp": 1,
|
"currentTimestamp": 1,
|
||||||
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0de0b6b3a6c9e2e0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre": {
|
"pre": {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87": {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87": {
|
||||||
"balance": "1000000000000000000",
|
"balance": "1000000000000000000",
|
||||||
@ -2272,6 +2683,19 @@
|
|||||||
"currentTimestamp": 1,
|
"currentTimestamp": 1,
|
||||||
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
"currentCoinbase": "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0xd2571607e241ecf590ed94b12d87c94babe36db6"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
|
"balance" : "65",
|
||||||
|
"code" : "0x6000355415600957005b602035600035",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" : {
|
"pre" : {
|
||||||
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
"095e7baea6a6c7c4c2dfeb977efac326af552d87" : {
|
||||||
"balance" : "1000000000000000000",
|
"balance" : "1000000000000000000",
|
||||||
@ -2313,6 +2737,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"bbbf5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x01",
|
||||||
|
"0x01" : "0x0a"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
@ -8,6 +8,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "100000",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -39,6 +45,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "0"
|
||||||
|
},
|
||||||
|
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : {
|
||||||
|
"code" : "0x"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "100000",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -70,6 +88,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : {
|
||||||
|
"code" : "0x"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -92,7 +118,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"TransactionSendingToZero" : {
|
"TransactionSendingToZero" : {
|
||||||
"env" : {
|
"env" : {
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
@ -102,6 +127,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"balance" : "1"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -134,6 +167,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "79000",
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -156,7 +195,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"TransactionToItselfNotEnoughFounds" : {
|
"TransactionToItselfNotEnoughFounds" : {
|
||||||
"env" : {
|
"env" : {
|
||||||
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
"currentCoinbase" : "2adc25665018aa1fe0e6bc666dac8fc2697ff9ba",
|
||||||
@ -166,6 +204,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "22000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -188,7 +231,6 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
"TransactionFromCoinbaseNotEnoughFounds" : {
|
"TransactionFromCoinbaseNotEnoughFounds" : {
|
||||||
"env" : {
|
"env" : {
|
||||||
"currentCoinbase" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
"currentCoinbase" : "a94f5374fce5edbc8e2a8697c15331677e6ebf0b",
|
||||||
@ -198,6 +240,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "22000"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -229,6 +276,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -276,6 +329,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -323,6 +382,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1",
|
||||||
|
"storage" : {
|
||||||
|
"0x01" : "0x37"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -370,6 +437,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "10"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -401,6 +473,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "100000",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -432,6 +510,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
|
"balance" : "10",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -482,6 +567,25 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"d2571607e241ecf590ed94b12d87c94babe36db6" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0c",
|
||||||
|
"0x01" : "0x0c",
|
||||||
|
"0x02" : "0x0c",
|
||||||
|
"0x03" : "0x0c",
|
||||||
|
"0x04" : "0x0c",
|
||||||
|
"0x05" : "0x0c",
|
||||||
|
"0x06" : "0x0c",
|
||||||
|
"0x07" : "0x0c",
|
||||||
|
"0x08" : "0x0c",
|
||||||
|
"0x09" : "0x0c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -532,6 +636,28 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0c",
|
||||||
|
"0x01" : "0x0c",
|
||||||
|
"0x02" : "0x0c",
|
||||||
|
"0x03" : "0x0c",
|
||||||
|
"0x04" : "0x0c",
|
||||||
|
"0x05" : "0x0c",
|
||||||
|
"0x06" : "0x0c",
|
||||||
|
"0x07" : "0x0c",
|
||||||
|
"0x08" : "0x0c",
|
||||||
|
"0x09" : "0x0c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "20"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -592,6 +718,19 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"balance" : "1",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "19"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -652,6 +791,31 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0c",
|
||||||
|
"0x01" : "0x0c",
|
||||||
|
"0x02" : "0x0c",
|
||||||
|
"0x03" : "0x0c",
|
||||||
|
"0x04" : "0x0c",
|
||||||
|
"0x05" : "0x0c",
|
||||||
|
"0x06" : "0x0c",
|
||||||
|
"0x07" : "0x0c",
|
||||||
|
"0x08" : "0x0c",
|
||||||
|
"0x09" : "0x0c"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "20",
|
||||||
|
"storage" : {
|
||||||
|
"0x04" : "0x0c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -717,6 +881,19 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"balance" : "1",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "19",
|
||||||
|
"storage" : {
|
||||||
|
"0x04" : "0x0c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -782,6 +959,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000001" : {
|
||||||
|
"balance" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -830,6 +1012,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"balance" : "20",
|
||||||
|
"code" : "0x6001ff"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -878,6 +1066,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"balance" : "0",
|
||||||
|
"code" : "0x6001ff"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "10"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -926,6 +1126,13 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000001" : {
|
||||||
|
"balance" : "1",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -975,6 +1182,16 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"0000000000000000000000000000000000000000" : {
|
||||||
|
"code" : "0x6001ff",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1023,6 +1240,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "111488",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "10502"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1063,6 +1289,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"post" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"c94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "1010"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1103,6 +1337,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "10"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1134,6 +1373,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1165,6 +1409,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "21652"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1197,6 +1446,18 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "0"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "42100",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "900"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1228,6 +1489,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "33000",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1259,6 +1526,17 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba" : {
|
||||||
|
"balance" : "0"
|
||||||
|
},
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "900"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1291,6 +1569,14 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "900"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1325,6 +1611,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "115792089237316195423570985008687907853269984665640564039457584007913129639935",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1359,6 +1651,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "400",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1391,6 +1689,11 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"ffffffffffffffffffffffffffffffffffffffff" : {
|
||||||
|
"balance" : "100"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1422,6 +1725,12 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "132000",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1453,6 +1762,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"6295ee1b4f6dd65047762f924ecd367c17eabf8f" : {
|
||||||
|
"balance" : "100",
|
||||||
|
"code" : "0x60e060020a600035048063f8a8fd6d14601457005b601a6020565b60006000f35b56",
|
||||||
|
"nonce" : "0",
|
||||||
|
"storage" : {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1484,6 +1802,15 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "0",
|
||||||
|
"nonce" : "0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
@ -1523,6 +1850,17 @@
|
|||||||
"currentTimestamp" : 1,
|
"currentTimestamp" : 1,
|
||||||
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
"previousHash" : "5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
|
||||||
},
|
},
|
||||||
|
"expect" : {
|
||||||
|
"b94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
"balance" : "100",
|
||||||
|
"nonce" : "1"
|
||||||
|
},
|
||||||
|
"f1ecf98489fa9ed60a664fc4998db699cfa39d40" : {
|
||||||
|
"storage" : {
|
||||||
|
"0x" : "0x0c"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"pre" :
|
"pre" :
|
||||||
{
|
{
|
||||||
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b" : {
|
||||||
|
Loading…
Reference in New Issue
Block a user