mirror of https://github.com/status-im/op-geth.git
transactionRoot -> transactionsRoot
This commit is contained in:
parent
85ebbc9aa5
commit
f89baa73e5
|
@ -16,7 +16,7 @@ type BlockRes struct {
|
||||||
Nonce *hexdata `json:"nonce"`
|
Nonce *hexdata `json:"nonce"`
|
||||||
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
||||||
LogsBloom *hexdata `json:"logsBloom"`
|
LogsBloom *hexdata `json:"logsBloom"`
|
||||||
TransactionRoot *hexdata `json:"transactionRoot"`
|
TransactionRoot *hexdata `json:"transactionsRoot"`
|
||||||
StateRoot *hexdata `json:"stateRoot"`
|
StateRoot *hexdata `json:"stateRoot"`
|
||||||
Miner *hexdata `json:"miner"`
|
Miner *hexdata `json:"miner"`
|
||||||
Difficulty *hexnum `json:"difficulty"`
|
Difficulty *hexnum `json:"difficulty"`
|
||||||
|
@ -40,7 +40,7 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) {
|
||||||
Nonce *hexdata `json:"nonce"`
|
Nonce *hexdata `json:"nonce"`
|
||||||
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
||||||
LogsBloom *hexdata `json:"logsBloom"`
|
LogsBloom *hexdata `json:"logsBloom"`
|
||||||
TransactionRoot *hexdata `json:"transactionRoot"`
|
TransactionRoot *hexdata `json:"transactionsRoot"`
|
||||||
StateRoot *hexdata `json:"stateRoot"`
|
StateRoot *hexdata `json:"stateRoot"`
|
||||||
Miner *hexdata `json:"miner"`
|
Miner *hexdata `json:"miner"`
|
||||||
Difficulty *hexnum `json:"difficulty"`
|
Difficulty *hexnum `json:"difficulty"`
|
||||||
|
@ -83,7 +83,7 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) {
|
||||||
Nonce *hexdata `json:"nonce"`
|
Nonce *hexdata `json:"nonce"`
|
||||||
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
Sha3Uncles *hexdata `json:"sha3Uncles"`
|
||||||
LogsBloom *hexdata `json:"logsBloom"`
|
LogsBloom *hexdata `json:"logsBloom"`
|
||||||
TransactionRoot *hexdata `json:"transactionRoot"`
|
TransactionRoot *hexdata `json:"transactionsRoot"`
|
||||||
StateRoot *hexdata `json:"stateRoot"`
|
StateRoot *hexdata `json:"stateRoot"`
|
||||||
Miner *hexdata `json:"miner"`
|
Miner *hexdata `json:"miner"`
|
||||||
Difficulty *hexnum `json:"difficulty"`
|
Difficulty *hexnum `json:"difficulty"`
|
||||||
|
|
|
@ -40,7 +40,7 @@ func TestNewBlockRes(t *testing.T) {
|
||||||
"nonce": reData,
|
"nonce": reData,
|
||||||
"sha3Uncles": reHash,
|
"sha3Uncles": reHash,
|
||||||
"logsBloom": reData,
|
"logsBloom": reData,
|
||||||
"transactionRoot": reHash,
|
"transactionsRoot": reHash,
|
||||||
"stateRoot": reHash,
|
"stateRoot": reHash,
|
||||||
"miner": reAddress,
|
"miner": reAddress,
|
||||||
"difficulty": `"0x1"`,
|
"difficulty": `"0x1"`,
|
||||||
|
@ -90,7 +90,7 @@ func TestNewBlockResWithTrans(t *testing.T) {
|
||||||
"nonce": reData,
|
"nonce": reData,
|
||||||
"sha3Uncles": reHash,
|
"sha3Uncles": reHash,
|
||||||
"logsBloom": reData,
|
"logsBloom": reData,
|
||||||
"transactionRoot": reHash,
|
"transactionsRoot": reHash,
|
||||||
"stateRoot": reHash,
|
"stateRoot": reHash,
|
||||||
"miner": reAddress,
|
"miner": reAddress,
|
||||||
"difficulty": `"0x1"`,
|
"difficulty": `"0x1"`,
|
||||||
|
|
Loading…
Reference in New Issue