diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/blockchain.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go index 2b2a1de4e..82f61cecd 100644 --- a/core/blockchain.go +++ b/core/blockchain.go @@ -347,7 +347,7 @@ func (bc *BlockChain) AddConfirmedBlock(block *coreTypes.Block) error { if err != nil { return err } - _, err := transactions.TouchSenders(types.MakeSigner(bc.Config(), new(big.Int))) + _, err = transactions.TouchSenders(types.MakeSigner(bc.Config(), new(big.Int))) if err != nil { return err } |