diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-08-31 16:04:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 16:04:11 +0800 |
commit | 9491ddae81640e04f8aed38e2cddeb64cc62d55b (patch) | |
tree | c646ed555d7f2e94df7ae1e10d57123264527a65 | |
parent | 18c6a28ff021c9dc643091b5dc420b51183253cf (diff) | |
download | dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar.gz dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar.bz2 dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar.lz dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar.xz dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.tar.zst dexon-consensus-9491ddae81640e04f8aed38e2cddeb64cc62d55b.zip |
Fix VerifyPayloads in nonBlockingApplication (#87)
-rw-r--r-- | core/nonblocking-application.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/nonblocking-application.go b/core/nonblocking-application.go index fb25745..5d674dd 100644 --- a/core/nonblocking-application.go +++ b/core/nonblocking-application.go @@ -128,7 +128,7 @@ func (app *nonBlockingApplication) PreparePayloads( // VerifyPayloads cannot be non-blocking. func (app *nonBlockingApplication) VerifyPayloads(payloads [][]byte) bool { - return true + return app.app.VerifyPayloads(payloads) } // BlockConfirmed is called when a block is confirmed and added to lattice. |