aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-29 10:20:00 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:19 +0800
commit7ece1a9f76ba17eb07c078cce6f8ffe48bac7551 (patch)
tree6f3a71a6257e23521a1ed4be3088f436b757bdb3 /dex/app.go
parent3bc8c1628257b2fab50f260e048118fc56b1ab02 (diff)
downloadgo-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar.gz
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar.bz2
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar.lz
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar.xz
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.tar.zst
go-tangerine-7ece1a9f76ba17eb07c078cce6f8ffe48bac7551.zip
Fix lint
Diffstat (limited to 'dex/app.go')
-rw-r--r--dex/app.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/dex/app.go b/dex/app.go
index 0e3f34f70..02e0a484f 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -39,7 +39,7 @@ const (
verifyBlockMaxRetries = 4
)
-// DexconApp implementes the DEXON consensus core application interface.
+// DexconApp implements the DEXON consensus core application interface.
type DexconApp struct {
txPool *core.TxPool
blockchain *core.BlockChain
@@ -382,7 +382,7 @@ func (d *DexconApp) VerifyBlock(block *coreTypes.Block) coreTypes.BlockVerifySta
log.Error("Failed to convert tx to message", "error", err)
return coreTypes.VerifyInvalidBlock
}
- balance, _ := addressesBalance[msg.From()]
+ balance := addressesBalance[msg.From()]
intrGas, err := core.IntrinsicGas(msg.Data(), msg.To() == nil, true)
if err != nil {
log.Error("Failed to calculate intrinsic gas", "err", err)