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 Jun 3, 2020. It is now read-only.
When the chain_id is configured incorrectly in tmkms.toml, this manifests in practice as the following error (on gaiad / tendermint side):
Error attempting to add vote
module=consensus err="Failed to verify vote with ChainID game_of_stakes_3 and PubKey PubKeyEd25519{4A25C6640A1F72B9C975338294EF51B6D1C33158BB6ECBA69FBC3FB5A33C9DCE}: Invalid signature"
Ideally either side (or both) would notice the other is advertising an unexpected chain_id and print a (potentially fatal) error message
The text was updated successfully, but these errors were encountered:
The problem here is that the chain_id currently is not send around between the kms <-> tendemint. So both sides currently do not know of the other's chain_id (hence can't check if they differ). There is an open issue about sending along the chain_id with the vote: tendermint/tendermint#2665 (comment)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When the
chain_id
is configured incorrectly intmkms.toml
, this manifests in practice as the following error (ongaiad
/tendermint
side):Ideally either side (or both) would notice the other is advertising an unexpected
chain_id
and print a (potentially fatal) error messageThe text was updated successfully, but these errors were encountered: