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
The validator (valoper) addresses must always be unverified strings as we cannot validate them.
We had this issue in wasmd some time ago: CosmWasm/wasmd#264 and concluded that we cannot validate both AccAddress and ValOperAddress. Unless you want to extend the API (which I found unnecessary), let's keep validators as string. You can verify them in init simply by making a query using them.
The text was updated successfully, but these errors were encountered:
With the Addr refactor in v0.14.0-beta2, we broke the staking contract.
When testing this in
wasmd
upgrade, I get:The validator (valoper) addresses must always be unverified strings as we cannot validate them.
We had this issue in wasmd some time ago: CosmWasm/wasmd#264 and concluded that we cannot validate both AccAddress and ValOperAddress. Unless you want to extend the API (which I found unnecessary), let's keep validators as string. You can verify them in
init
simply by making a query using them.The text was updated successfully, but these errors were encountered: