diff options
author | obscuren <geffobscura@gmail.com> | 2015-05-11 05:12:18 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-05-11 17:39:33 +0800 |
commit | a2919b5e17197afcb689b8f4144f255a5872f85d (patch) | |
tree | 7d2adf6b51bd2b54d13b177ee39dd9366ffbebc8 /common/size.go | |
parent | 6674ea8d67012a8ad1227738c69b8997962fe141 (diff) | |
download | go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.gz go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.bz2 go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.lz go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.xz go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.tar.zst go-tangerine-a2919b5e17197afcb689b8f4144f255a5872f85d.zip |
core, eth, miner: improved tx removal & fatal error on db sync err
* core: Added GasPriceChange event
* eth: When one of the DB flush methods error a fatal error log message
is given. Hopefully this will prevent corrupted databases from
occuring.
* miner: remove transactions with low gas price. Closes #906, #903
Diffstat (limited to 'common/size.go')
-rw-r--r-- | common/size.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common/size.go b/common/size.go index 0d9dbf558..4ea7f7b11 100644 --- a/common/size.go +++ b/common/size.go @@ -44,12 +44,6 @@ func CurrencyToString(num *big.Int) string { ) switch { - case num.Cmp(Douglas) >= 0: - fin = new(big.Int).Div(num, Douglas) - denom = "Douglas" - case num.Cmp(Einstein) >= 0: - fin = new(big.Int).Div(num, Einstein) - denom = "Einstein" case num.Cmp(Ether) >= 0: fin = new(big.Int).Div(num, Ether) denom = "Ether" |