From 8f2f64551e75f3ed8c0343adff7fb3926cb4f71b Mon Sep 17 00:00:00 2001 From: Rongjian Lan Date: Tue, 13 Nov 2018 11:59:18 -0800 Subject: [PATCH] Fix fmt error --- core/genesis.go | 2 +- harmony/main.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/genesis.go b/core/genesis.go index a2c356b98..c86366b73 100644 --- a/core/genesis.go +++ b/core/genesis.go @@ -329,7 +329,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))}, }, } } diff --git a/harmony/main.go b/harmony/main.go index 9bde4815e..2d0248b03 100644 --- a/harmony/main.go +++ b/harmony/main.go @@ -1,4 +1,4 @@ -package harmony +package main import ( "github.com/ethereum/go-ethereum/core/vm"