diff options
author | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-04 08:25:04 +0800 |
---|---|---|
committer | Jeffrey Wilcke <geffobscura@gmail.com> | 2015-07-04 08:32:10 +0800 |
commit | 2feb23c1dacf1cc7ef664d92f28b63dd46502f21 (patch) | |
tree | 5532c0a82ae0d39104977f5bc022e024de3043be /eth/gasprice.go | |
parent | acd85fe95f025384885ed09560e32b227d80b26f (diff) | |
download | dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar.gz dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar.bz2 dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar.lz dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar.xz dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.tar.zst dexon-2feb23c1dacf1cc7ef664d92f28b63dd46502f21.zip |
core, eth, miner, xeth: receipt storage fix
* Added GetReceiptsFromBlock, GetReceipt, PutReceipts
* Added ContractAddress to receipt. See #1042
Diffstat (limited to 'eth/gasprice.go')
-rw-r--r-- | eth/gasprice.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/eth/gasprice.go b/eth/gasprice.go index ddf1c8c09..09ef8cded 100644 --- a/eth/gasprice.go +++ b/eth/gasprice.go @@ -131,13 +131,10 @@ func (self *GasPriceOracle) processBlock(block *types.Block) { // returns the lowers possible price with which a tx was or could have been included func (self *GasPriceOracle) lowestPrice(block *types.Block) *big.Int { gasUsed := new(big.Int) - recepits, err := self.eth.BlockProcessor().GetBlockReceipts(block.Hash()) - if err != nil { - return self.eth.GpoMinGasPrice - } - if len(recepits) > 0 { - gasUsed = recepits[len(recepits)-1].CumulativeGasUsed + receipts := self.eth.BlockProcessor().GetBlockReceipts(block.Hash()) + if len(receipts) > 0 { + gasUsed = receipts[len(receipts)-1].CumulativeGasUsed } if new(big.Int).Mul(gasUsed, big.NewInt(100)).Cmp(new(big.Int).Mul(block.GasLimit(), |