aboutsummaryrefslogtreecommitdiffstats
path: root/core/test/app.go
diff options
context:
space:
mode:
authorMission Liao <mission.liao@dexon.org>2018-10-12 19:36:32 +0800
committerGitHub <noreply@github.com>2018-10-12 19:36:32 +0800
commit09f943d9d4ebd151a8c6fdbd15ca3282edbc7e94 (patch)
tree61eb287e8119f0de7670cb7a98dfa35cd431cc82 /core/test/app.go
parent48f5fdb27e3218e2476b27ae99bcf242533b3bc3 (diff)
downloaddexon-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/test/app.go')
-rw-r--r--core/test/app.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/test/app.go b/core/test/app.go
index 60bc26f..d9582c9 100644
--- a/core/test/app.go
+++ b/core/test/app.go
@@ -97,15 +97,15 @@ func NewApp() *App {
}
// PreparePayload implements Application interface.
-func (app *App) PreparePayload(position types.Position) []byte {
- return []byte{}
+func (app *App) PreparePayload(position types.Position) ([]byte, error) {
+ return []byte{}, nil
}
// PrepareWitness implements Application interface.
-func (app *App) PrepareWitness(height uint64) types.Witness {
+func (app *App) PrepareWitness(height uint64) (types.Witness, error) {
return types.Witness{
Height: height,
- }
+ }, nil
}
// VerifyBlock implements Application.