You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.
System info: [Include Ethermint commit, operating system name, and other relevant details]
In app/rpc/namespace directory, the method to get blockHash is: blockHash := common.BytesToHash(block.Block.Header.Hash())
but in tendermint, the method to get blockHash is:
tendermint/state/execution.go:284
// Begin block
var err error
abciResponses.BeginBlock, err = proxyAppConn.BeginBlockSync(abci.RequestBeginBlock{
Hash: block.Hash(),
Header: types.TM2PB.Header(&block.Header),
LastCommitInfo: commitInfo,
ByzantineValidators: byzVals,
})
Header.Hash() will not include LastCommit *Commit info!
The current method will introduce #721 error.
Steps to reproduce:
[First Step]
[Second Step]
[and so on...]
Expected behavior: [What you expected to happen]
Actual behavior: [What actually happened]
Additional info: [Include gist of relevant config, logs, etc.]
The text was updated successfully, but these errors were encountered:
System info: [Include Ethermint commit, operating system name, and other relevant details]
In app/rpc/namespace directory, the method to get blockHash is:
blockHash := common.BytesToHash(block.Block.Header.Hash())
but in tendermint, the method to get blockHash is:
tendermint/state/execution.go:284
Header.Hash()
will not includeLastCommit *Commit
info!The current method will introduce #721 error.
Steps to reproduce:
Expected behavior: [What you expected to happen]
Actual behavior: [What actually happened]
Additional info: [Include gist of relevant config, logs, etc.]
The text was updated successfully, but these errors were encountered: