aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-19 14:36:36 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:53 +0800
commitcd90968df471ed9c44d8c8c6430baeb24c9ab6e8 (patch)
treeb2397a22523b717c1b9d30f9244a07947eb4c488 /dex/app.go
parent637fa3808231dea5083a8fd5a7b10c318902d9fa (diff)
downloaddexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar.gz
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar.bz2
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar.lz
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar.xz
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.tar.zst
dexon-cd90968df471ed9c44d8c8c6430baeb24c9ab6e8.zip
governance: implement delegate/undelegate function and add tests (#33)
Implement delegate/undelegate function to allow others to delegate it's fund to stake on a node. Also added governance contract tests.
Diffstat (limited to 'dex/app.go')
-rw-r--r--dex/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/dex/app.go b/dex/app.go
index e0280dc2c..99514ed83 100644
--- a/dex/app.go
+++ b/dex/app.go
@@ -245,7 +245,7 @@ func (d *DexconApp) PrepareWitness(consensusHeight uint64) (witness coreTypes.Wi
if lastPendingHeight == 0 && consensusHeight == 0 {
witnessBlock = d.blockchain.CurrentBlock()
} else if lastPendingHeight >= consensusHeight {
- witnessBlock = d.blockchain.GetPendingBlock()
+ witnessBlock = d.blockchain.PendingBlock()
} else {
log.Error("last pending height too low", "lastPendingHeight", lastPendingHeight,
"consensusHeight", consensusHeight)