From ff8fd2731dcb8ac2320b8637242dd284ad69d853 Mon Sep 17 00:00:00 2001 From: Sergio Mena Date: Mon, 4 Apr 2022 19:32:01 +0200 Subject: [PATCH] Fix execution.go --- state/execution.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/state/execution.go b/state/execution.go index 2cc3db6e7..db0200ea5 100644 --- a/state/execution.go +++ b/state/execution.go @@ -306,9 +306,12 @@ func execBlockOnProxyApp( abciResponses.BeginBlock, err = proxyAppConn.BeginBlockSync(abci.RequestBeginBlock{ Hash: block.Hash(), - Header: *pbh, LastCommitInfo: commitInfo, ByzantineValidators: byzVals, + Height: pbh.Height, + Time: pbh.Time, + NextValidatorsHash: pbh.NextValidatorsHash, + ProposerAddress: pbh.ProposerAddress, }) if err != nil { logger.Error("error in proxyAppConn.BeginBlock", "err", err)