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
bridgeState object is not representing a bridge state anymore. It rather represents the whole node's transient state + app/consensus state (what we call currentState).
Suggested to rename it like this:
Rename bridgeState to nodeState or just state.
Rename bridgeState.currentState to nodeState.consensusState. This object is used to generate app hashes for tendermint — nodes agree on the state of things upon it, hence the name consensusState.
nodeState.js:
nodeState={
...
consensusState: {
...
}
The text was updated successfully, but these errors were encountered:
bridgeState
object is not representing a bridge state anymore. It rather represents the whole node's transient state + app/consensus state (what we callcurrentState
).Suggested to rename it like this:
bridgeState
tonodeState
or juststate
.bridgeState.currentState
tonodeState.consensusState
. This object is used to generate app hashes for tendermint — nodes agree on the state of things upon it, hence the nameconsensusState
.nodeState.js:
The text was updated successfully, but these errors were encountered: