diff options
Diffstat (limited to 'chain/bloom9.go')
-rw-r--r-- | chain/bloom9.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chain/bloom9.go b/chain/bloom9.go index 60cafdb4b..ced31cc30 100644 --- a/chain/bloom9.go +++ b/chain/bloom9.go @@ -3,8 +3,8 @@ package chain import ( "math/big" - "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/ethutil" + "github.com/ethereum/go-ethereum/state" ) func CreateBloom(block *Block) []byte { @@ -17,7 +17,7 @@ func CreateBloom(block *Block) []byte { return bin.Bytes() } -func LogsBloom(logs ethstate.Logs) *big.Int { +func LogsBloom(logs state.Logs) *big.Int { bin := new(big.Int) for _, log := range logs { data := [][]byte{log.Address} |