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@byzantine-lab.io>2019-06-12 17:27:18 +0800
commit78dac82d810fe4a1ad6878adbc789f909155f472 (patch)
tree13189c293ed8603a7e9d8b15571fff1737c9bc1f /dex/app.go
parent8a0b917def2d80b112d7d8a5854aba62afc0a630 (diff)
downloadgo-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar.gz
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar.bz2
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar.lz
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar.xz
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.tar.zst
go-tangerine-78dac82d810fe4a1ad6878adbc789f909155f472.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)