From abec5441a8ba8d4d2fa7729fe6f3893cac336551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zdyba=C5=82?= Date: Thu, 18 Nov 2021 17:10:12 +0100 Subject: [PATCH] Actually fix a #184... (#186) --- state/executor.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/state/executor.go b/state/executor.go index f7eb16bab41..7ec7b128cf4 100644 --- a/state/executor.go +++ b/state/executor.go @@ -22,7 +22,7 @@ import ( type BlockExecutor struct { proposerAddress []byte namespaceID [8]byte - chainID string + chainID string proxyApp proxy.AppConnConsensus mempool mempool.Mempool @@ -35,6 +35,7 @@ func NewBlockExecutor(proposerAddress []byte, namespaceID [8]byte, chainID strin return &BlockExecutor{ proposerAddress: proposerAddress, namespaceID: namespaceID, + chainID: chainID, proxyApp: proxyApp, mempool: mempool, logger: logger,