aboutsummaryrefslogtreecommitdiffstats
path: root/core/test/app.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/test/app.go')
-rw-r--r--core/test/app.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/test/app.go b/core/test/app.go
index a48b3c8..ba949b3 100644
--- a/core/test/app.go
+++ b/core/test/app.go
@@ -109,8 +109,8 @@ func (app *App) PrepareWitness(height uint64) (types.Witness, error) {
}
// VerifyBlock implements Application.
-func (app *App) VerifyBlock(block *types.Block) bool {
- return true
+func (app *App) VerifyBlock(block *types.Block) types.BlockVerifyStatus {
+ return types.VerifyOK
}
// BlockConfirmed implements Application interface.