diff options
author | Andy <mortimer.tyrannus@gmail.com> | 2015-04-21 12:08:50 +0800 |
---|---|---|
committer | Andy <mortimer.tyrannus@gmail.com> | 2015-04-21 12:08:50 +0800 |
commit | 3ef1cd43f6f582bb23863292eb1d0c2de88a7a29 (patch) | |
tree | 20b01d8dcc95c4a9638780eb4c3ea0d85bd2c403 | |
parent | 8d85e45c7d4fb294d1ba3030000c32f7babbbd13 (diff) | |
download | go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar.gz go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar.bz2 go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar.lz go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar.xz go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.tar.zst go-tangerine-3ef1cd43f6f582bb23863292eb1d0c2de88a7a29.zip |
fix for: Please remove the "minGasPrice" from block returns #754
-rw-r--r-- | rpc/responses.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/rpc/responses.go b/rpc/responses.go index 5d1be8f34..884b7e69b 100644 --- a/rpc/responses.go +++ b/rpc/responses.go @@ -24,7 +24,6 @@ type BlockRes struct { Size *hexnum `json:"size"` ExtraData *hexdata `json:"extraData"` GasLimit *hexnum `json:"gasLimit"` - MinGasPrice *hexnum `json:"minGasPrice"` GasUsed *hexnum `json:"gasUsed"` UnixTimestamp *hexnum `json:"timestamp"` Transactions []*TransactionRes `json:"transactions"` @@ -48,7 +47,6 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) { Size *hexnum `json:"size"` ExtraData *hexdata `json:"extraData"` GasLimit *hexnum `json:"gasLimit"` - MinGasPrice *hexnum `json:"minGasPrice"` GasUsed *hexnum `json:"gasUsed"` UnixTimestamp *hexnum `json:"timestamp"` Transactions []*TransactionRes `json:"transactions"` @@ -69,7 +67,6 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) { ext.Size = b.Size ext.ExtraData = b.ExtraData ext.GasLimit = b.GasLimit - ext.MinGasPrice = b.MinGasPrice ext.GasUsed = b.GasUsed ext.UnixTimestamp = b.UnixTimestamp ext.Transactions = b.Transactions @@ -94,7 +91,6 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) { Size *hexnum `json:"size"` ExtraData *hexdata `json:"extraData"` GasLimit *hexnum `json:"gasLimit"` - MinGasPrice *hexnum `json:"minGasPrice"` GasUsed *hexnum `json:"gasUsed"` UnixTimestamp *hexnum `json:"timestamp"` Transactions []*hexdata `json:"transactions"` @@ -115,7 +111,6 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) { ext.Size = b.Size ext.ExtraData = b.ExtraData ext.GasLimit = b.GasLimit - ext.MinGasPrice = b.MinGasPrice ext.GasUsed = b.GasUsed ext.UnixTimestamp = b.UnixTimestamp ext.Transactions = make([]*hexdata, len(b.Transactions)) @@ -151,7 +146,6 @@ func NewBlockRes(block *types.Block, fullTx bool) *BlockRes { res.Size = newHexNum(block.Size().Int64()) res.ExtraData = newHexData(block.Header().Extra) res.GasLimit = newHexNum(block.GasLimit()) - // res.MinGasPrice = res.GasUsed = newHexNum(block.GasUsed()) res.UnixTimestamp = newHexNum(block.Time()) |