diff options
author | Wei-Ning Huang <w@dexon.org> | 2018-09-27 14:27:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-27 14:27:18 +0800 |
commit | 506014f22faba150cd7197e7dd817e72a914dc84 (patch) | |
tree | 3f61287a4578c31c447cc8d9283fc3c728dd6cb7 /integration_test/node.go | |
parent | 9c2f700be09c27e8a8d12fc5bc0ccd017d408a32 (diff) | |
download | dexon-consensus-506014f22faba150cd7197e7dd817e72a914dc84.tar.gz dexon-consensus-506014f22faba150cd7197e7dd817e72a914dc84.tar.zst dexon-consensus-506014f22faba150cd7197e7dd817e72a914dc84.zip |
core: update governance interface and config (#145)
1) Remove RoundHeight from config.
2) NotarySet is not from governance contract, we get Node set intead.
Notary set is caculated from the NodeSet using CRS.
3) CRS is not in the governance interface.
Diffstat (limited to 'integration_test/node.go')
-rw-r--r-- | integration_test/node.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/integration_test/node.go b/integration_test/node.go index 715331e..d66a86a 100644 --- a/integration_test/node.go +++ b/integration_test/node.go @@ -88,7 +88,7 @@ func NewNode( shardID = uint32(0) chainID = uint32(math.MaxUint32) governanceConfig = gov.GetConfiguration(0) - broadcastTargets = gov.GetNotarySet(0) + broadcastTargets = gov.GetNodeSet(0) nodeID = types.NewNodeID(privateKey.PublicKey()) ) hashes := common.Hashes{} |