Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
075815e5
Commit
075815e5
authored
Sep 14, 2015
by
Gustav Simonsson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests: update common test wrappers and test files
parent
216c486a
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
13102 additions
and
424 deletions
+13102
-424
block_test_util.go
tests/block_test_util.go
+57
-28
difficulty.json
tests/files/BasicTests/difficulty.json
+12521
-0
bcUncleTest.json
tests/files/BlockchainTests/bcUncleTest.json
+4
-4
bcValidBlockTest.json
tests/files/BlockchainTests/bcValidBlockTest.json
+247
-1
vmArithmeticTest.json
tests/files/VMTests/vmArithmeticTest.json
+238
-388
vmIOandFlowOperationsTest.json
tests/files/VMTests/vmIOandFlowOperationsTest.json
+35
-0
state_test_util.go
tests/state_test_util.go
+0
-3
No files found.
tests/block_test_util.go
View file @
075815e5
...
...
@@ -44,8 +44,9 @@ import (
type
BlockTest
struct
{
Genesis
*
types
.
Block
Json
*
btJSON
preAccounts
map
[
string
]
btAccount
Json
*
btJSON
preAccounts
map
[
string
]
btAccount
postAccounts
map
[
string
]
btAccount
}
type
btJSON
struct
{
...
...
@@ -147,7 +148,6 @@ func runBlockTests(bt map[string]*BlockTest, skipTests []string) error {
glog
.
Infoln
(
"Skipping block test"
,
name
)
continue
}
// test the block
if
err
:=
runBlockTest
(
test
);
err
!=
nil
{
return
fmt
.
Errorf
(
"%s: %v"
,
name
,
err
)
...
...
@@ -173,7 +173,7 @@ func runBlockTest(test *BlockTest) error {
}
// import pre accounts
statedb
,
err
:
=
test
.
InsertPreState
(
ethereum
)
_
,
err
=
test
.
InsertPreState
(
ethereum
)
if
err
!=
nil
{
return
fmt
.
Errorf
(
"InsertPreState: %v"
,
err
)
}
...
...
@@ -183,7 +183,8 @@ func runBlockTest(test *BlockTest) error {
return
err
}
if
err
=
test
.
ValidatePostState
(
statedb
);
err
!=
nil
{
newDB
:=
ethereum
.
ChainManager
()
.
State
()
if
err
=
test
.
ValidatePostState
(
newDB
);
err
!=
nil
{
return
fmt
.
Errorf
(
"post state validation failed: %v"
,
err
)
}
return
nil
...
...
@@ -265,6 +266,7 @@ func (t *BlockTest) InsertPreState(ethereum *eth.Ethereum) (*state.StateDB, erro
post state.
*/
func
(
t
*
BlockTest
)
TryBlocksInsert
(
chainManager
*
core
.
ChainManager
)
error
{
blockNums
:=
make
(
map
[
string
]
bool
)
// insert the test blocks, which will execute all transactions
for
_
,
b
:=
range
t
.
Json
.
Blocks
{
cb
,
err
:=
mustConvertBlock
(
b
)
...
...
@@ -287,9 +289,35 @@ func (t *BlockTest) TryBlocksInsert(chainManager *core.ChainManager) error {
if
b
.
BlockHeader
==
nil
{
return
fmt
.
Errorf
(
"Block insertion should have failed"
)
}
err
=
t
.
validateBlockHeader
(
b
.
BlockHeader
,
cb
.
Header
())
if
err
!=
nil
{
return
fmt
.
Errorf
(
"Block header validation failed: %v"
,
err
)
// validate RLP decoding by checking all values against test file JSON
if
err
=
t
.
validateBlockHeader
(
b
.
BlockHeader
,
cb
.
Header
());
err
!=
nil
{
return
fmt
.
Errorf
(
"Deserialised block header validation failed: %v"
,
err
)
}
// validate the imported header against test file JSON
/*
TODO: currently test files do not contain information on what
reorg is expected other than possibly the post state (which may
or may not depend on a specific chain).
discussed with winswega and it was agreed to add this information
to the test files explicitly.
meanwhile we skip header validation on blocks with the same block
number as a prior block, since this test code cannot know what
blocks are in the longest chain without making use of the very
protocol rules the tests verify or rely on the correctness of the
code that is being tested.
*/
if
!
blockNums
[
b
.
BlockHeader
.
Number
]
{
importedBlock
:=
chainManager
.
CurrentBlock
()
if
err
=
t
.
validateBlockHeader
(
b
.
BlockHeader
,
importedBlock
.
Header
());
err
!=
nil
{
return
fmt
.
Errorf
(
"Imported block header validation failed: %v"
,
err
)
}
blockNums
[
b
.
BlockHeader
.
Number
]
=
true
}
}
return
nil
...
...
@@ -298,83 +326,84 @@ func (t *BlockTest) TryBlocksInsert(chainManager *core.ChainManager) error {
func
(
s
*
BlockTest
)
validateBlockHeader
(
h
*
btHeader
,
h2
*
types
.
Header
)
error
{
expectedBloom
:=
mustConvertBytes
(
h
.
Bloom
)
if
!
bytes
.
Equal
(
expectedBloom
,
h2
.
Bloom
.
Bytes
())
{
return
fmt
.
Errorf
(
"Bloom:
expected: %v, decoded: %v
"
,
expectedBloom
,
h2
.
Bloom
.
Bytes
())
return
fmt
.
Errorf
(
"Bloom:
want: %x have: %x
"
,
expectedBloom
,
h2
.
Bloom
.
Bytes
())
}
expectedCoinbase
:=
mustConvertBytes
(
h
.
Coinbase
)
if
!
bytes
.
Equal
(
expectedCoinbase
,
h2
.
Coinbase
.
Bytes
())
{
return
fmt
.
Errorf
(
"Coinbase:
expected: %v, decoded: %v
"
,
expectedCoinbase
,
h2
.
Coinbase
.
Bytes
())
return
fmt
.
Errorf
(
"Coinbase:
want: %x have: %x
"
,
expectedCoinbase
,
h2
.
Coinbase
.
Bytes
())
}
expectedMixHashBytes
:=
mustConvertBytes
(
h
.
MixHash
)
if
!
bytes
.
Equal
(
expectedMixHashBytes
,
h2
.
MixDigest
.
Bytes
())
{
return
fmt
.
Errorf
(
"MixHash:
expected: %v, decoded: %v
"
,
expectedMixHashBytes
,
h2
.
MixDigest
.
Bytes
())
return
fmt
.
Errorf
(
"MixHash:
want: %x have: %x
"
,
expectedMixHashBytes
,
h2
.
MixDigest
.
Bytes
())
}
expectedNonce
:=
mustConvertBytes
(
h
.
Nonce
)
if
!
bytes
.
Equal
(
expectedNonce
,
h2
.
Nonce
[
:
])
{
return
fmt
.
Errorf
(
"Nonce:
expected: %v, decoded: %v
"
,
expectedNonce
,
h2
.
Nonce
)
return
fmt
.
Errorf
(
"Nonce:
want: %x have: %x
"
,
expectedNonce
,
h2
.
Nonce
)
}
expectedNumber
:=
mustConvertBigInt
(
h
.
Number
,
16
)
if
expectedNumber
.
Cmp
(
h2
.
Number
)
!=
0
{
return
fmt
.
Errorf
(
"Number:
expected: %v, decoded
: %v"
,
expectedNumber
,
h2
.
Number
)
return
fmt
.
Errorf
(
"Number:
want: %v have
: %v"
,
expectedNumber
,
h2
.
Number
)
}
expectedParentHash
:=
mustConvertBytes
(
h
.
ParentHash
)
if
!
bytes
.
Equal
(
expectedParentHash
,
h2
.
ParentHash
.
Bytes
())
{
return
fmt
.
Errorf
(
"Parent hash:
expected: %v, decoded: %v
"
,
expectedParentHash
,
h2
.
ParentHash
.
Bytes
())
return
fmt
.
Errorf
(
"Parent hash:
want: %x have: %x
"
,
expectedParentHash
,
h2
.
ParentHash
.
Bytes
())
}
expectedReceiptHash
:=
mustConvertBytes
(
h
.
ReceiptTrie
)
if
!
bytes
.
Equal
(
expectedReceiptHash
,
h2
.
ReceiptHash
.
Bytes
())
{
return
fmt
.
Errorf
(
"Receipt hash:
expected: %v, decoded: %v
"
,
expectedReceiptHash
,
h2
.
ReceiptHash
.
Bytes
())
return
fmt
.
Errorf
(
"Receipt hash:
want: %x have: %x
"
,
expectedReceiptHash
,
h2
.
ReceiptHash
.
Bytes
())
}
expectedTxHash
:=
mustConvertBytes
(
h
.
TransactionsTrie
)
if
!
bytes
.
Equal
(
expectedTxHash
,
h2
.
TxHash
.
Bytes
())
{
return
fmt
.
Errorf
(
"Tx hash:
expected: %v, decoded: %v
"
,
expectedTxHash
,
h2
.
TxHash
.
Bytes
())
return
fmt
.
Errorf
(
"Tx hash:
want: %x have: %x
"
,
expectedTxHash
,
h2
.
TxHash
.
Bytes
())
}
expectedStateHash
:=
mustConvertBytes
(
h
.
StateRoot
)
if
!
bytes
.
Equal
(
expectedStateHash
,
h2
.
Root
.
Bytes
())
{
return
fmt
.
Errorf
(
"State hash:
expected: %v, decoded: %v
"
,
expectedStateHash
,
h2
.
Root
.
Bytes
())
return
fmt
.
Errorf
(
"State hash:
want: %x have: %x
"
,
expectedStateHash
,
h2
.
Root
.
Bytes
())
}
expectedUncleHash
:=
mustConvertBytes
(
h
.
UncleHash
)
if
!
bytes
.
Equal
(
expectedUncleHash
,
h2
.
UncleHash
.
Bytes
())
{
return
fmt
.
Errorf
(
"Uncle hash:
expected: %v, decoded: %v
"
,
expectedUncleHash
,
h2
.
UncleHash
.
Bytes
())
return
fmt
.
Errorf
(
"Uncle hash:
want: %x have: %x
"
,
expectedUncleHash
,
h2
.
UncleHash
.
Bytes
())
}
expectedExtraData
:=
mustConvertBytes
(
h
.
ExtraData
)
if
!
bytes
.
Equal
(
expectedExtraData
,
h2
.
Extra
)
{
return
fmt
.
Errorf
(
"Extra data:
expected: %v, decoded: %v
"
,
expectedExtraData
,
h2
.
Extra
)
return
fmt
.
Errorf
(
"Extra data:
want: %x have: %x
"
,
expectedExtraData
,
h2
.
Extra
)
}
expectedDifficulty
:=
mustConvertBigInt
(
h
.
Difficulty
,
16
)
if
expectedDifficulty
.
Cmp
(
h2
.
Difficulty
)
!=
0
{
return
fmt
.
Errorf
(
"Difficulty:
expected: %v, decoded
: %v"
,
expectedDifficulty
,
h2
.
Difficulty
)
return
fmt
.
Errorf
(
"Difficulty:
want: %v have
: %v"
,
expectedDifficulty
,
h2
.
Difficulty
)
}
expectedGasLimit
:=
mustConvertBigInt
(
h
.
GasLimit
,
16
)
if
expectedGasLimit
.
Cmp
(
h2
.
GasLimit
)
!=
0
{
return
fmt
.
Errorf
(
"GasLimit:
expected: %v, decoded
: %v"
,
expectedGasLimit
,
h2
.
GasLimit
)
return
fmt
.
Errorf
(
"GasLimit:
want: %v have
: %v"
,
expectedGasLimit
,
h2
.
GasLimit
)
}
expectedGasUsed
:=
mustConvertBigInt
(
h
.
GasUsed
,
16
)
if
expectedGasUsed
.
Cmp
(
h2
.
GasUsed
)
!=
0
{
return
fmt
.
Errorf
(
"GasUsed:
expected: %v, decoded
: %v"
,
expectedGasUsed
,
h2
.
GasUsed
)
return
fmt
.
Errorf
(
"GasUsed:
want: %v have
: %v"
,
expectedGasUsed
,
h2
.
GasUsed
)
}
expectedTimestamp
:=
mustConvertBigInt
(
h
.
Timestamp
,
16
)
if
expectedTimestamp
.
Cmp
(
h2
.
Time
)
!=
0
{
return
fmt
.
Errorf
(
"Timestamp:
expected: %v, decoded
: %v"
,
expectedTimestamp
,
h2
.
Time
)
return
fmt
.
Errorf
(
"Timestamp:
want: %v have
: %v"
,
expectedTimestamp
,
h2
.
Time
)
}
return
nil
}
func
(
t
*
BlockTest
)
ValidatePostState
(
statedb
*
state
.
StateDB
)
error
{
for
addrString
,
acct
:=
range
t
.
preAccounts
{
// validate post state accounts in test file against what we have in state db
for
addrString
,
acct
:=
range
t
.
postAccounts
{
// XXX: is is worth it checking for errors here?
addr
,
err
:=
hex
.
DecodeString
(
addrString
)
if
err
!=
nil
{
...
...
@@ -398,13 +427,13 @@ func (t *BlockTest) ValidatePostState(statedb *state.StateDB) error {
balance2
:=
statedb
.
GetBalance
(
common
.
BytesToAddress
(
addr
))
nonce2
:=
statedb
.
GetNonce
(
common
.
BytesToAddress
(
addr
))
if
!
bytes
.
Equal
(
code2
,
code
)
{
return
fmt
.
Errorf
(
"account code mismatch
, addr, found, expected: "
,
addrString
,
hex
.
EncodeToString
(
code2
),
hex
.
EncodeToString
(
code
))
return
fmt
.
Errorf
(
"account code mismatch
for addr: %s want: %s have: %s"
,
addrString
,
hex
.
EncodeToString
(
code
),
hex
.
EncodeToString
(
code2
))
}
if
balance2
.
Cmp
(
balance
)
!=
0
{
return
fmt
.
Errorf
(
"account balance mismatch
, addr, found, expected: "
,
addrString
,
balance2
,
balance
)
return
fmt
.
Errorf
(
"account balance mismatch
for addr: %s, want: %d, have: %d"
,
addrString
,
balance
,
balance2
)
}
if
nonce2
!=
nonce
{
return
fmt
.
Errorf
(
"account nonce mismatch
, addr, found, expected: "
,
addrString
,
nonce2
,
nonce
)
return
fmt
.
Errorf
(
"account nonce mismatch
for addr: %s want: %d have: %d"
,
addrString
,
nonce
,
nonce2
)
}
}
return
nil
...
...
@@ -432,7 +461,7 @@ func convertBlockTest(in *btJSON) (out *BlockTest, err error) {
err
=
fmt
.
Errorf
(
"%v
\n
%s"
,
recovered
,
buf
)
}
}()
out
=
&
BlockTest
{
preAccounts
:
in
.
Pre
,
Json
:
in
}
out
=
&
BlockTest
{
preAccounts
:
in
.
Pre
,
postAccounts
:
in
.
PostState
,
Json
:
in
}
out
.
Genesis
=
mustConvertGenesis
(
in
.
GenesisBlockHeader
)
return
out
,
err
}
...
...
tests/files/BasicTests/difficulty.json
View file @
075815e5
This source diff could not be displayed because it is too large. You can
view the blob
instead.
tests/files/BlockchainTests/bcUncleTest.json
View file @
075815e5
...
...
@@ -4826,23 +4826,23 @@
"lastblockhash"
:
"eed1b4da708283370856fc76352d68f36d9766b7f366da372e2992ced9a1f663"
,
"postState"
:
{
"095e7baea6a6c7c4c2dfeb977efac326af552d87"
:
{
"balance"
:
"0x1
4
"
,
"balance"
:
"0x1
e
"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"8888f1f195afa192cfee860698584c030f4c9db1"
:
{
"balance"
:
"0x
8ac7230489e8a410
"
,
"balance"
:
"0x
d255d112e1049618
"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b"
:
{
"balance"
:
"0x09184e71
fbdc
"
,
"balance"
:
"0x09184e71
a9ca
"
,
"code"
:
"0x"
,
"nonce"
:
"0x0
2
"
,
"nonce"
:
"0x0
3
"
,
"storage"
:
{
}
}
...
...
tests/files/BlockchainTests/bcValidBlockTest.json
View file @
075815e5
...
...
@@ -375,6 +375,252 @@
}
}
},
"SuicideCoinbase"
:
{
"blocks"
:
[
{
"blockHeader"
:
{
"bloom"
:
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
,
"coinbase"
:
"8888f1f195afa192cfee860698584c030f4c9db1"
,
"difficulty"
:
"0x020000"
,
"extraData"
:
"0x"
,
"gasLimit"
:
"0x2fefd8"
,
"gasUsed"
:
"0xcdc7"
,
"hash"
:
"b1ff798f6f2a8c617f75b265e00ec67fab2f1e6076359d3332d99e8f69688850"
,
"mixHash"
:
"f9192b11328b47b77fc4765f3ec74ab433d63a01095ed77e3f82627766a491bc"
,
"nonce"
:
"97c55a07ab25b5fe"
,
"number"
:
"0x01"
,
"parentHash"
:
"363315d12ad724ec43a5400affb35e66e0b94bc40c6150b2870f76563a7703a7"
,
"receiptTrie"
:
"56e592ae6cf92b6c205e50d9cdbf1d3c5fe7f9fbc2bf219b93855107518e7e7f"
,
"stateRoot"
:
"7564aa479e81b3f9a05b0f99193fdd7367ccc0e74d140249d943ce0df904ba02"
,
"timestamp"
:
"0x55e5b3e8"
,
"transactionsTrie"
:
"fcfe9f2203bd98342867117fa3de299a09578371efd04fc9e76a46f7f1fda4bb"
,
"uncleHash"
:
"1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
},
"rlp"
:
"0xf9032ef901f9a0363315d12ad724ec43a5400affb35e66e0b94bc40c6150b2870f76563a7703a7a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a07564aa479e81b3f9a05b0f99193fdd7367ccc0e74d140249d943ce0df904ba02a0fcfe9f2203bd98342867117fa3de299a09578371efd04fc9e76a46f7f1fda4bba056e592ae6cf92b6c205e50d9cdbf1d3c5fe7f9fbc2bf219b93855107518e7e7fb90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000001832fefd882cdc78455e5b3e880a0f9192b11328b47b77fc4765f3ec74ab433d63a01095ed77e3f82627766a491bc8897c55a07ab25b5fef9012ef866800a8307a120948888f1f195afa192cfee860698584c030f4c9db18203e9840c55699c1ba091fc4c402ced19b984e953546d3fc786c46a79c9f0c7918b8f3343dc529ef0e5a0546d89230c90ca8bf7988a826430d4771ab3a67cc0f3cb8019d67ab10ec10524f861010a82c3509400000000000000000000000000000000000000008203e8801ba0b03ab16ed211bf447ac030216ab088f18367ee51303545d2957990e9d3a28f10a07f18dd055139f7ac5558997b80ccae799ab6fbad2326799db509a9d4e5a52d72f861020a82c3509400000000000000000000000000000000000000008203ea801ba00925abd1221d388622138f4bae46803313f297001e96fec22dc4268fca5b5a82a055cd8142bcec39f80b359aa089f6a70568d23a67048026703981fad9339ef5d4c0"
,
"transactions"
:
[
{
"data"
:
"0x0c55699c"
,
"gasLimit"
:
"0x07a120"
,
"gasPrice"
:
"0x0a"
,
"nonce"
:
"0x00"
,
"r"
:
"0x91fc4c402ced19b984e953546d3fc786c46a79c9f0c7918b8f3343dc529ef0e5"
,
"s"
:
"0x546d89230c90ca8bf7988a826430d4771ab3a67cc0f3cb8019d67ab10ec10524"
,
"to"
:
"8888f1f195afa192cfee860698584c030f4c9db1"
,
"v"
:
"0x1b"
,
"value"
:
"0x03e9"
},
{
"data"
:
"0x"
,
"gasLimit"
:
"0xc350"
,
"gasPrice"
:
"0x0a"
,
"nonce"
:
"0x01"
,
"r"
:
"0xb03ab16ed211bf447ac030216ab088f18367ee51303545d2957990e9d3a28f10"
,
"s"
:
"0x7f18dd055139f7ac5558997b80ccae799ab6fbad2326799db509a9d4e5a52d72"
,
"to"
:
"0000000000000000000000000000000000000000"
,
"v"
:
"0x1b"
,
"value"
:
"0x03e8"
},
{
"data"
:
"0x"
,
"gasLimit"
:
"0xc350"
,
"gasPrice"
:
"0x0a"
,
"nonce"
:
"0x02"
,
"r"
:
"0x0925abd1221d388622138f4bae46803313f297001e96fec22dc4268fca5b5a82"
,
"s"
:
"0x55cd8142bcec39f80b359aa089f6a70568d23a67048026703981fad9339ef5d4"
,
"to"
:
"0000000000000000000000000000000000000000"
,
"v"
:
"0x1b"
,
"value"
:
"0x03ea"
}
],
"uncleHeaders"
:
[
]
}
],
"genesisBlockHeader"
:
{
"bloom"
:
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
,
"coinbase"
:
"8888f1f195afa192cfee860698584c030f4c9db1"
,
"difficulty"
:
"0x020000"
,
"extraData"
:
"0x42"
,
"gasLimit"
:
"0x2fefd8"
,
"gasUsed"
:
"0x00"
,
"hash"
:
"363315d12ad724ec43a5400affb35e66e0b94bc40c6150b2870f76563a7703a7"
,
"mixHash"
:
"d45a667aa8d50bd136d83b1b86bf38fe3cabfb78c47022e67bb6cfcb76529f7b"
,
"nonce"
:
"5350f90a8c5a106a"
,
"number"
:
"0x00"
,
"parentHash"
:
"0000000000000000000000000000000000000000000000000000000000000000"
,
"receiptTrie"
:
"56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
,
"stateRoot"
:
"4941fba20142b10d43d0a893dfa4f5eedcbcb4b55c8554efd71e226624d9b37c"
,
"timestamp"
:
"0x54c98c81"
,
"transactionsTrie"
:
"56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
,
"uncleHash"
:
"1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
},
"genesisRLP"
:
"0xf901fcf901f7a00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a04941fba20142b10d43d0a893dfa4f5eedcbcb4b55c8554efd71e226624d9b37ca056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000080832fefd8808454c98c8142a0d45a667aa8d50bd136d83b1b86bf38fe3cabfb78c47022e67bb6cfcb76529f7b885350f90a8c5a106ac0c0"
,
"lastblockhash"
:
"b1ff798f6f2a8c617f75b265e00ec67fab2f1e6076359d3332d99e8f69688850"
,
"postState"
:
{
"0000000000000000000000000000000000000000"
:
{
"balance"
:
"0x07d2"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"8888f1f195afa192cfee860698584c030f4c9db1"
:
{
"balance"
:
"0x4563918244fa68a0"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b"
:
{
"balance"
:
"0x025403d650"
,
"code"
:
"0x"
,
"nonce"
:
"0x03"
,
"storage"
:
{
}
}
},
"pre"
:
{
"8888f1f195afa192cfee860698584c030f4c9db1"
:
{
"balance"
:
"0x03e8"
,
"code"
:
"0x60606040526000357c0100000000000000000000000000000000000000000000000000000000900480630c55699c146037576035565b005b60406004506042565b005b3373ffffffffffffffffffffffffffffffffffffffff16ff5b56"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b"
:
{
"balance"
:
"0x02540be400"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
}
}
},
"OOGStateCopyContainingDeletedContract"
:
{
"blocks"
:
[
{
"blockHeader"
:
{
"bloom"
:
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
,
"coinbase"
:
"8888f1f195afa192cfee860698584c030f4c9db1"
,
"difficulty"
:
"0x020000"
,
"extraData"
:
"0x"
,
"gasLimit"
:
"0x092a08"
,
"gasUsed"
:
"0x021ed0"
,
"hash"
:
"e6289f0826f8b8998cf5cb3747b95f8e3252a11e5eb930f139bf591b38b3f272"
,
"mixHash"
:
"d1fbf3b3e6c0189e04fa100c3d2e78889ffbec16553d50153b3f400fcd2b0589"
,
"nonce"
:
"9f2f26d826716c43"
,
"number"
:
"0x01"
,
"parentHash"
:
"d8eb76ceb37b640d4e0aae5ea85dca3989fe3b2616d2a7b333379c8a315e4fe1"
,
"receiptTrie"
:
"3e21fb330e6981a4657f97fc2ace223c75f17d83f0fa017586d5b872b48b4824"
,
"stateRoot"
:
"042cf0272a105f572ee8a5a3014aef7fff760fc3ce18c2aedac0cc55c152a4b9"
,
"timestamp"
:
"0x55edb8c0"
,
"transactionsTrie"
:
"5c3eb7e26c39308ede0b5a0b9b403fb89c3369deda106c32faf7d0def6f421d2"
,
"uncleHash"
:
"1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
},
"rlp"
:
"0xf902eef901faa0d8eb76ceb37b640d4e0aae5ea85dca3989fe3b2616d2a7b333379c8a315e4fe1a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a0042cf0272a105f572ee8a5a3014aef7fff760fc3ce18c2aedac0cc55c152a4b9a05c3eb7e26c39308ede0b5a0b9b403fb89c3369deda106c32faf7d0def6f421d2a03e21fb330e6981a4657f97fc2ace223c75f17d83f0fa017586d5b872b48b4824b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000830200000183092a0883021ed08455edb8c080a0d1fbf3b3e6c0189e04fa100c3d2e78889ffbec16553d50153b3f400fcd2b0589889f2f26d826716c43f8eef864800a830493e09464306ec3f51a26dcf19f5da0c043040f54f4eca501840c5feb5d1ba00cf2cc4de3013273d0aae3cf36cdb6cf152573f7a5b99fe2c514a845bbb98a93a048f4aa20b37303bf4f2c0e7e5f6c178814f99ab4d3d98cf9382185f1ae256b7ff886010a830493e0942e0de3fc10a88911ff857126db1a5f0da6f251738203eaa4fc49c80e00000000000000000000000064306ec3f51a26dcf19f5da0c043040f54f4eca51ca0c9f11f1b4aedd9c1d99a6e2aea6f9ce90bdd6bb6063193715fdb43e77029346fa03440044e3aa54293e887f1751146bf915e73c39eae7da82b75a6d2c7a31d252bc0"
,
"transactions"
:
[
{
"data"
:
"0x0c5feb5d"
,
"gasLimit"
:
"0x0493e0"
,
"gasPrice"
:
"0x0a"
,
"nonce"
:
"0x00"
,
"r"
:
"0x0cf2cc4de3013273d0aae3cf36cdb6cf152573f7a5b99fe2c514a845bbb98a93"
,
"s"
:
"0x48f4aa20b37303bf4f2c0e7e5f6c178814f99ab4d3d98cf9382185f1ae256b7f"
,
"to"
:
"64306ec3f51a26dcf19f5da0c043040f54f4eca5"
,
"v"
:
"0x1b"
,
"value"
:
"0x01"
},
{
"data"
:
"0xfc49c80e00000000000000000000000064306ec3f51a26dcf19f5da0c043040f54f4eca5"
,
"gasLimit"
:
"0x0493e0"
,
"gasPrice"
:
"0x0a"
,
"nonce"
:
"0x01"
,
"r"
:
"0xc9f11f1b4aedd9c1d99a6e2aea6f9ce90bdd6bb6063193715fdb43e77029346f"
,
"s"
:
"0x3440044e3aa54293e887f1751146bf915e73c39eae7da82b75a6d2c7a31d252b"
,
"to"
:
"2e0de3fc10a88911ff857126db1a5f0da6f25173"
,
"v"
:
"0x1c"
,
"value"
:
"0x03ea"
}
],
"uncleHeaders"
:
[
]
}
],
"genesisBlockHeader"
:
{
"bloom"
:
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
,
"coinbase"
:
"8888f1f195afa192cfee860698584c030f4c9db1"
,
"difficulty"
:
"0x020000"
,
"extraData"
:
"0x42"
,
"gasLimit"
:
"0x0927c0"
,
"gasUsed"
:
"0x00"
,
"hash"
:
"d8eb76ceb37b640d4e0aae5ea85dca3989fe3b2616d2a7b333379c8a315e4fe1"
,
"mixHash"
:
"c29e85e09cf8a71fbf0151f492eb89d135ed3515a6d7bf792978eab16c55e87c"
,
"nonce"
:
"02427e36fe1c0e09"
,
"number"
:
"0x00"
,
"parentHash"
:
"0000000000000000000000000000000000000000000000000000000000000000"
,
"receiptTrie"
:
"56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
,
"stateRoot"
:
"2b9f478fe39744a8c17eb48ae7bf86f6a47031a823a632f9bd661b59978aeefd"
,
"timestamp"
:
"0x54c98c81"
,
"transactionsTrie"
:
"56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421"
,
"uncleHash"
:
"1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347"
},
"genesisRLP"
:
"0xf901fcf901f7a00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948888f1f195afa192cfee860698584c030f4c9db1a02b9f478fe39744a8c17eb48ae7bf86f6a47031a823a632f9bd661b59978aeefda056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008302000080830927c0808454c98c8142a0c29e85e09cf8a71fbf0151f492eb89d135ed3515a6d7bf792978eab16c55e87c8802427e36fe1c0e09c0c0"
,
"lastblockhash"
:
"e6289f0826f8b8998cf5cb3747b95f8e3252a11e5eb930f139bf591b38b3f272"
,
"postState"
:
{
"2e0de3fc10a88911ff857126db1a5f0da6f25173"
:
{
"balance"
:
"0x03eb"
,
"code"
:
"0x60606040526000357c01000000000000000000000000000000000000000000000000000000009004806342e90c3314610044578063fc49c80e1461005157610042565b005b61004f600450610064565b005b6100626004803590602001506100a4565b005b6000600090505b600a8160ff1610156100a057602a600060005082600a81101561000257909001600050819055505b808060010191505061006b565b5b50565b3073ffffffffffffffffffffffffffffffffffffffff1661ea6060405180807f53746f7265282900000000000000000000000000000000000000000000000000815260200150600701905060405180910390207c0100000000000000000000000000000000000000000000000000000000809104027c0100000000000000000000000000000000000000000000000000000000900490604051827c010000000000000000000000000000000000000000000000000000000002815260040180905060006040518083038160008887f19350505050508073ffffffffffffffffffffffffffffffffffffffff166326c6a34c604051817c01000000000000000000000000000000000000000000000000000000000281526004018090506020604051808303816000876161da5a03f115610002575050506040515160006000506009600a81101561000257909001600050819055505b5056"
,
"nonce"
:
"0x00"
,
"storage"
:
{
"0x09"
:
"0x26c6a34c00000000000000000000000000000000000000000000000000000000"
}
},
"64306ec3f51a26dcf19f5da0c043040f54f4eca5"
:
{
"balance"
:
"0x00"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"8888f1f195afa192cfee860698584c030f4c9db1"
:
{
"balance"
:
"0x4563918245093420"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b"
:
{
"balance"
:
"0x174861aff7"
,
"code"
:
"0x"
,
"nonce"
:
"0x02"
,
"storage"
:
{
}
}
},
"pre"
:
{
"2e0de3fc10a88911ff857126db1a5f0da6f25173"
:
{
"balance"
:
"0x01"
,
"code"
:
"0x60606040526000357c01000000000000000000000000000000000000000000000000000000009004806342e90c3314610044578063fc49c80e1461005157610042565b005b61004f600450610064565b005b6100626004803590602001506100a4565b005b6000600090505b600a8160ff1610156100a057602a600060005082600a81101561000257909001600050819055505b808060010191505061006b565b5b50565b3073ffffffffffffffffffffffffffffffffffffffff1661ea6060405180807f53746f7265282900000000000000000000000000000000000000000000000000815260200150600701905060405180910390207c0100000000000000000000000000000000000000000000000000000000809104027c0100000000000000000000000000000000000000000000000000000000900490604051827c010000000000000000000000000000000000000000000000000000000002815260040180905060006040518083038160008887f19350505050508073ffffffffffffffffffffffffffffffffffffffff166326c6a34c604051817c01000000000000000000000000000000000000000000000000000000000281526004018090506020604051808303816000876161da5a03f115610002575050506040515160006000506009600a81101561000257909001600050819055505b5056"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"64306ec3f51a26dcf19f5da0c043040f54f4eca5"
:
{
"balance"
:
"0x01"
,
"code"
:
"0x60606040526000357c0100000000000000000000000000000000000000000000000000000000900480630c5feb5d14604157806326c6a34c14604c57603f565b005b604a600450606b565b005b60556004506086565b6040518082815260200191505060405180910390f35b3373ffffffffffffffffffffffffffffffffffffffff16ff5b565b600061053990506091565b9056"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
},
"a94f5374fce5edbc8e2a8697c15331677e6ebf0b"
:
{
"balance"
:
"0x174876e800"
,
"code"
:
"0x"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
}
}
},
"SimpleTx"
:
{
"blocks"
:
[
{
...
...
@@ -1848,4 +2094,4 @@
}
}
}
}
\ No newline at end of file
}
tests/files/VMTests/vmArithmeticTest.json
View file @
075815e5
...
...
@@ -7,8 +7,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -52,8 +51,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -97,8 +95,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -141,8 +138,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -185,8 +181,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -229,8 +224,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -274,8 +268,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -319,8 +312,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -363,8 +355,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -408,8 +399,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -453,8 +443,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -498,8 +487,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -543,8 +531,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -587,8 +574,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -632,8 +618,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -677,8 +662,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -721,8 +705,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -766,8 +749,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -810,8 +792,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -854,8 +835,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -898,8 +878,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -943,8 +922,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -987,8 +965,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1023,6 +1000,50 @@
}
}
},
"divBoostBug"
:
{
"callcreates"
:
[
],
"env"
:
{
"currentCoinbase"
:
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
,
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
"caller"
:
"cd1722f2947def4cf144679da39c4c32bdc35681"
,
"code"
:
"0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055"
,
"data"
:
"0x"
,
"gas"
:
"0x0186a0"
,
"gasPrice"
:
"0x5af3107a4000"
,
"origin"
:
"cd1722f2947def4cf144679da39c4c32bdc35681"
,
"value"
:
"0x0de0b6b3a7640000"
},
"gas"
:
"0x013872"
,
"logs"
:
[
],
"out"
:
"0x"
,
"post"
:
{
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
:
{
"balance"
:
"0x0de0b6b3a7640000"
,
"code"
:
"0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055"
,
"nonce"
:
"0x00"
,
"storage"
:
{
"0x00"
:
"0x89"
}
}
},
"pre"
:
{
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
:
{
"balance"
:
"0x0de0b6b3a7640000"
,
"code"
:
"0x7f01dae6076b981dae6076b981dae6076b981dae6076b981dae6076b981dae60777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffba04600055"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
}
}
},
"divByNonZero0"
:
{
"callcreates"
:
[
],
...
...
@@ -1031,8 +1052,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1076,8 +1096,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1120,8 +1139,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1164,8 +1182,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1209,8 +1226,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1253,8 +1269,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1298,8 +1313,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1343,8 +1357,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1388,8 +1401,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1433,8 +1445,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1477,8 +1488,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1522,8 +1532,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1567,8 +1576,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1612,8 +1620,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1656,8 +1663,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1709,8 +1715,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1759,8 +1764,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1809,8 +1813,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1859,8 +1862,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1909,8 +1911,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -1959,8 +1960,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2009,8 +2009,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2059,8 +2058,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2109,8 +2107,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2159,8 +2156,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2209,8 +2205,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2259,8 +2254,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2309,8 +2303,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2359,8 +2352,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2409,8 +2401,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2459,8 +2450,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2509,8 +2499,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2559,8 +2548,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2609,8 +2597,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2659,8 +2646,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2709,8 +2695,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2759,8 +2744,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2809,8 +2793,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2859,8 +2842,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2909,8 +2891,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -2959,8 +2940,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3010,8 +2990,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3061,8 +3040,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3111,8 +3089,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3161,8 +3138,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3211,8 +3187,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3261,8 +3236,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x05f5e100"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3311,8 +3285,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3361,8 +3334,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3408,8 +3380,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3455,8 +3426,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3502,8 +3472,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3549,8 +3518,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3596,8 +3564,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3643,8 +3610,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3690,8 +3656,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3737,8 +3702,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3784,8 +3748,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3831,8 +3794,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3878,8 +3840,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3925,8 +3886,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -3972,8 +3932,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4019,8 +3978,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4066,8 +4024,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4113,8 +4070,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4160,8 +4116,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4207,8 +4162,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4254,8 +4208,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4301,8 +4254,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4348,8 +4300,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4395,8 +4346,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4442,8 +4392,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4489,8 +4438,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4536,8 +4484,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4582,8 +4529,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4628,8 +4574,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4675,8 +4620,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4722,8 +4666,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4769,8 +4712,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4816,8 +4758,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4863,8 +4804,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4910,8 +4850,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -4957,8 +4896,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5004,8 +4942,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5051,8 +4988,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5096,8 +5032,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5143,8 +5078,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5190,8 +5124,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5237,8 +5170,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5284,8 +5216,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5330,8 +5261,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5377,8 +5307,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5421,8 +5350,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5466,8 +5394,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5511,8 +5438,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5555,8 +5481,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5599,8 +5524,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5644,8 +5568,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5689,8 +5612,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5734,8 +5656,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5779,8 +5700,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5823,8 +5743,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5868,8 +5787,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5913,8 +5831,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -5957,8 +5874,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6002,8 +5918,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6044,8 +5959,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6075,8 +5989,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6119,8 +6032,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6163,8 +6075,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6207,8 +6118,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6252,8 +6162,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6297,8 +6206,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6342,8 +6250,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6387,8 +6294,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6431,8 +6337,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6476,8 +6381,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6521,8 +6425,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6565,8 +6468,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6609,8 +6511,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6653,8 +6554,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6697,8 +6597,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6741,8 +6640,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6786,8 +6684,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6830,8 +6727,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6875,8 +6771,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6920,8 +6815,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -6964,8 +6858,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7009,8 +6902,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7054,8 +6946,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7099,8 +6990,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7143,8 +7033,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7187,8 +7076,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7232,8 +7120,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7277,8 +7164,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7321,8 +7207,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7365,8 +7250,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7410,8 +7294,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7454,8 +7337,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7499,8 +7381,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7544,8 +7425,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7588,8 +7468,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7633,8 +7512,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7677,8 +7555,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7722,8 +7599,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7767,8 +7643,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7812,8 +7687,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7857,8 +7731,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7901,8 +7774,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7946,8 +7818,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -7991,8 +7862,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8036,8 +7906,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8080,8 +7949,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8125,8 +7993,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x989680"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8170,8 +8037,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8215,8 +8081,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8260,8 +8125,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8305,8 +8169,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8349,8 +8212,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8393,8 +8255,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8437,8 +8298,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8482,8 +8342,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8526,8 +8385,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8571,8 +8429,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8615,8 +8472,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8660,8 +8516,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8704,8 +8559,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8749,8 +8603,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8794,8 +8647,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8839,8 +8691,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
@@ -8884,8 +8735,7 @@
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
,
"previousHash"
:
"5e20a0453cecd065ea59c37ac63e079ee08998b6045136a8ce6635c7912ec0b6"
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
...
...
tests/files/VMTests/vmIOandFlowOperationsTest.json
View file @
075815e5
...
...
@@ -4845,6 +4845,41 @@
}
}
},
"sstore_underflow"
:
{
"env"
:
{
"currentCoinbase"
:
"2adc25665018aa1fe0e6bc666dac8fc2697ff9ba"
,
"currentDifficulty"
:
"0x0100"
,
"currentGasLimit"
:
"0x0f4240"
,
"currentNumber"
:
"0x00"
,
"currentTimestamp"
:
"0x01"
},
"exec"
:
{
"address"
:
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
,
"caller"
:
"cd1722f3947def4cf144679da39c4c32bdc35681"
,
"code"
:
"0x600155"
,
"data"
:
"0x"
,
"gas"
:
"0x0186a0"
,
"gasPrice"
:
"0x5af3107a4000"
,
"origin"
:
"cd1722f3947def4cf144679da39c4c32bdc35681"
,
"value"
:
"0x0de0b6b3a7640000"
},
"expect"
:
{
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
:
{
"storage"
:
{
"0x01"
:
"0x00"
}
}
},
"pre"
:
{
"0f572e5295c57f15886f9b263e2f6d2d6c7b5ec6"
:
{
"balance"
:
"0x152d02c7e14af6800000"
,
"code"
:
"0x600155"
,
"nonce"
:
"0x00"
,
"storage"
:
{
}
}
}
},
"stack_loop"
:
{
"callcreates"
:
[
],
...
...
tests/state_test_util.go
View file @
075815e5
...
...
@@ -181,9 +181,6 @@ func runStateTest(test VmTest) error {
// check post state
for
addr
,
account
:=
range
test
.
Post
{
obj
:=
statedb
.
GetStateObject
(
common
.
HexToAddress
(
addr
))
if
obj
==
nil
{
continue
}
if
obj
.
Balance
()
.
Cmp
(
common
.
Big
(
account
.
Balance
))
!=
0
{
return
fmt
.
Errorf
(
"(%x) balance failed. Expected %v, got %v => %v
\n
"
,
obj
.
Address
()
.
Bytes
()[
:
4
],
account
.
Balance
,
obj
.
Balance
(),
new
(
big
.
Int
)
.
Sub
(
common
.
Big
(
account
.
Balance
),
obj
.
Balance
()))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment