aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJimmy Hu <jimmy.hu@dexon.org>2018-11-14 15:39:06 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:18 +0800
commit4e0dcae8713065ad72fa8b01099f18722ec5c1eb (patch)
tree73f061a05469fe8edd9a05ba0a46327d01dd395f /core
parentd151e9b72c3af7570c14ba3e9bc773e33a6c1e73 (diff)
downloadgo-tangerine-4e0dcae8713065ad72fa8b01099f18722ec5c1eb.tar.gz
go-tangerine-4e0dcae8713065ad72fa8b01099f18722ec5c1eb.tar.zst
go-tangerine-4e0dcae8713065ad72fa8b01099f18722ec5c1eb.zip
dex, core: Fix make fail (#24)
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 60730d197..2bccaf9dc 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
}