aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorWei-Ning Huang <aitjcize@gmail.com>2018-11-13 15:26:21 +0800
committerWei-Ning Huang <w@dexon.org>2018-12-19 20:54:27 +0800
commit1fbea1eeb71062477d104b4def4c367cc5407de8 (patch)
treec95c74e5dfbabdcb245c1753229a92b8ce25d4fe /dex/app.go
parent2029c52f5a683f8135dba829495981a128412e40 (diff)
downloaddexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar.gz
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar.bz2
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar.lz
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar.xz
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.tar.zst
dexon-1fbea1eeb71062477d104b4def4c367cc5407de8.zip
dex: return correct pending nonce (#14)
We need to return the correct pending nonce (include those in the tx pool). Also, StateAndHeaderByNumber is also fixed to use pending block.
Diffstat (limited to 'dex/app.go')
-rw-r--r--dex/app.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/dex/app.go b/dex/app.go
index d0d911e86..a90dfae37 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -275,13 +275,13 @@ addressMap:
// PrepareWitness will return the witness data no lower than consensusHeight.
func (d *DexconApp) PrepareWitness(consensusHeight uint64) (witness coreTypes.Witness, err error) {
var witnessBlock *types.Block
- lastPendingHeight := d.blockchain.GetLastPendingHeight()
+ lastPendingHeight := d.blockchain.GetPendingHeight()
if lastPendingHeight == 0 && consensusHeight == 0 {
witnessBlock = d.blockchain.CurrentBlock()
} else if lastPendingHeight >= consensusHeight {
- witnessBlock = d.blockchain.GetLastPendingBlock()
+ witnessBlock = d.blockchain.GetPendingBlock()
} else if h := <-d.addNotify(consensusHeight); h >= consensusHeight {
- witnessBlock = d.blockchain.GetLastPendingBlock()
+ witnessBlock = d.blockchain.GetPendingBlock()
} else {
log.Error("need pending block")
return witness, fmt.Errorf("need pending block")