reorder block fields for aesthetics

This commit is contained in:
William Banfield
2022-02-25 18:47:49 -05:00
parent a97c1819c3
commit 42a01cc966

View File

@@ -395,9 +395,9 @@ func execBlockOnProxyApp(
abciResponses.FinalizeBlock, err = proxyAppConn.FinalizeBlock(
ctx,
abci.RequestFinalizeBlock{
Txs: block.Txs.ToSliceOfBytes(),
Hash: block.Hash(),
Header: *pbh,
Txs: block.Txs.ToSliceOfBytes(),
LastCommitInfo: buildLastCommitInfo(block, store, initialHeight),
ByzantineValidators: block.Evidence.ToABCI(),
},