diff options
author | Mission Liao <mission.liao@dexon.org> | 2018-10-12 19:36:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-12 19:36:32 +0800 |
commit | 09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94 (patch) | |
tree | 61eb287e8119f0de7670cb7a98dfa35cd431cc82 /core/nodeset-cache_test.go | |
parent | 48f5fdb27e3218e2476b27ae99bcf242533b3bc3 (diff) | |
download | dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar.gz dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar.bz2 dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar.lz dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar.xz dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.tar.zst dexon-consensus-09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94.zip |
core: modify interface (#194)
* Add a new method to notify full node about round cutting.
* Modify interface to return error when preparing block
Diffstat (limited to 'core/nodeset-cache_test.go')
-rw-r--r-- | core/nodeset-cache_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/nodeset-cache_test.go b/core/nodeset-cache_test.go index 6324421..73f0dee 100644 --- a/core/nodeset-cache_test.go +++ b/core/nodeset-cache_test.go @@ -40,8 +40,9 @@ func (g *testGov) Configuration(round uint64) (cfg *types.Config) { NumChains: 4, } } -func (g *testGov) CRS(round uint64) (b common.Hash) { return g.crs } -func (g *testGov) ProposeCRS([]byte) {} +func (g *testGov) CRS(round uint64) (b common.Hash) { return g.crs } +func (g *testGov) ProposeCRS([]byte) {} +func (g *testGov) NotifyRoundHeight(round, height uint64) {} func (g *testGov) NodeSet(round uint64) []crypto.PublicKey { // Randomly generating keys, and check them for verification. g.curKeys = []crypto.PublicKey{} |