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.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/test/app.go b/core/test/app.go
index e26c20c..e36a184 100644
--- a/core/test/app.go
+++ b/core/test/app.go
@@ -102,6 +102,11 @@ func NewApp() *App {
}
}
+// PreparePayloads implements Application interface.
+func (app *App) PreparePayloads(shardID, chainID, height uint64) [][]byte {
+ return [][]byte{}
+}
+
// StronglyAcked implements Application interface.
func (app *App) StronglyAcked(blockHash common.Hash) {
app.ackedLock.Lock()