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
Add a case for AccountNumberStoreKeyPrefix to the x/auth simulation decoder.
Problem Definition
The NewDecodeStore defined in x/auth/simulation/decoder.go doesn't have an entry for the newly added AccountNumberStoreKeyPrefix. This causes the provenance import/export sims to fail because those entries exist in the store, but cannot be decoded (panic: unexpected key).
Summary
Add a case for
AccountNumberStoreKeyPrefix
to thex/auth
simulation decoder.Problem Definition
The
NewDecodeStore
defined inx/auth/simulation/decoder.go
doesn't have an entry for the newly addedAccountNumberStoreKeyPrefix
. This causes the provenance import/export sims to fail because those entries exist in the store, but cannot be decoded (panic: unexpected key).Proposal
Add this case to the
NewDecodeStore
switch:The text was updated successfully, but these errors were encountered: