aboutsummaryrefslogtreecommitdiffstats
path: root/core/utils.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-10-12 18:59:05 +0800
committerGitHub <noreply@github.com>2018-10-12 18:59:05 +0800
commit48f5fdb27e3218e2476b27ae99bcf242533b3bc3 (patch)
tree9926478b8dc6129d67a7da2d6fdfde84b96420c6 /core/utils.go
parent490fa1e9ce2b661e4c8b612bd53f20123346353b (diff)
downloaddexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar.gz
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar.bz2
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar.lz
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar.xz
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.tar.zst
dexon-consensus-48f5fdb27e3218e2476b27ae99bcf242533b3bc3.zip
core: latticeData supports config change (#190)
* Add test for num of chains changes. * Return error in latticeData.prepareBlock * Compare two positions * Modify chainStatus from height-based to index-based. * Fix consensus to use round variable * Remove sanity check in chainStatus * Fixup: refine sanity check - verify if round switching is required or not by chainTip's config. - make the logic in sanity check more clear - pospone acking relationship checking, they are more expensive to check.
Diffstat (limited to 'core/utils.go')
-rw-r--r--core/utils.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/core/utils.go b/core/utils.go
index 3c1d211..ac95678 100644
--- a/core/utils.go
+++ b/core/utils.go
@@ -130,3 +130,11 @@ func HashConfigurationBlock(
prevHash[:],
)
}
+
+// DiffUint64 calculates difference between two uint64.
+func DiffUint64(a, b uint64) uint64 {
+ if a > b {
+ return a - b
+ }
+ return b - a
+}