aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-09-19 16:47:09 +0800
committerPéter Szilágyi <peterke@gmail.com>2018-09-19 16:47:09 +0800
commitfaa69bea1cade1d0f8b00814fc0616c5a57f0709 (patch)
treeb42f467ce5f600a2151f9c81b5d71dd9b479f151 /core
parent67c332e9b5c1afff65108abcc2b6883ace72abb9 (diff)
downloadgo-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.gz
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.bz2
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.lz
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.xz
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.tar.zst
go-tangerine-faa69bea1cade1d0f8b00814fc0616c5a57f0709.zip
core, eth: fix goimports for Go 1.11
Diffstat (limited to 'core')
-rw-r--r--core/genesis.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/genesis.go b/core/genesis.go
index 9190e2ba2..6e71afd61 100644
--- a/core/genesis.go
+++ b/core/genesis.go
@@ -355,7 +355,7 @@ func DeveloperGenesisBlock(period uint64, faucet common.Address) *Genesis {
common.BytesToAddress([]byte{6}): {Balance: big.NewInt(1)}, // ECAdd
common.BytesToAddress([]byte{7}): {Balance: big.NewInt(1)}, // ECScalarMul
common.BytesToAddress([]byte{8}): {Balance: big.NewInt(1)}, // ECPairing
- faucet: {Balance: new(big.Int).Sub(new(big.Int).Lsh(big.NewInt(1), 256), big.NewInt(9))},
+ faucet: {Balance: new(big.Int).Sub(new(big.Int).Lsh(big.NewInt(1), 256), big.NewInt(9))},
},
}
}