Browse Source

london hard fork

master
yuriy0803 2 years ago
parent
commit
b20204d260
  1. 21
      rpc/rpc.go

21
rpc/rpc.go

@ -27,17 +27,16 @@ type RPCClient struct {
} }
type GetBlockReply struct { type GetBlockReply struct {
Number string `json:"number"` Number string `json:"number"`
Hash string `json:"hash"` Hash string `json:"hash"`
Nonce string `json:"nonce"` Nonce string `json:"nonce"`
Miner string `json:"miner"` Miner string `json:"miner"`
Difficulty string `json:"difficulty"` Difficulty string `json:"difficulty"`
GasLimit string `json:"gasLimit"` GasLimit string `json:"gasLimit"`
GasUsed string `json:"gasUsed"` GasUsed string `json:"gasUsed"`
BaseFeePerGas string `json:"baseFeePerGas"` Timestamp string `json:"timestamp"`
Timestamp string `json:"timestamp"` Transactions []Tx `json:"transactions"`
Transactions []Tx `json:"transactions"` Uncles []string `json:"uncles"`
Uncles []string `json:"uncles"`
// https://github.com/ethereum/EIPs/issues/95 // https://github.com/ethereum/EIPs/issues/95
SealFields []string `json:"sealFields"` SealFields []string `json:"sealFields"`
// london hard fork // london hard fork

Loading…
Cancel
Save