diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-25 22:40:51 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-25 22:40:51 +0800 |
commit | b7ff0d42e3adbacd6f4186c633cf73d06bd16324 (patch) | |
tree | 6abc554b343b8f68e76b7303e652f22f89e47d5e /core/fees.go | |
parent | 07aae19e5da66ed404453e6be70ab84db516207b (diff) | |
parent | c98bce709c392f3b469f956b5f66f095a30a7e2b (diff) | |
download | dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.gz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.bz2 dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.lz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.xz dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.tar.zst dexon-b7ff0d42e3adbacd6f4186c633cf73d06bd16324.zip |
Merge pull request #14515 from karalabe/golint-tooooolong
core: fix various golint warnings and errors
Diffstat (limited to 'core/fees.go')
-rw-r--r-- | core/fees.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fees.go b/core/fees.go index 0bb26f055..83275ea36 100644 --- a/core/fees.go +++ b/core/fees.go @@ -20,4 +20,4 @@ import ( "math/big" ) -var BlockReward *big.Int = big.NewInt(5e+18) +var BlockReward = big.NewInt(5e+18) |