We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Carried over from Discord
// cosmwasm-std/src/testing/mock.rs | line 81 const CANONICAL_LENGTH: usize = 54;
causes issues in tests when a human readable contract address is passed to addr_validate in the contracts core logic
addr_validate
Example with Juno addresses:
usize of a human readable Juno wallet address = 43 ✅
usize of a human readable Juno contract address = 63 ❌
Increasing this to something that supports contract addresses makes sense, perhaps 100 to support chains with longer prefixes
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Carried over from Discord
causes issues in tests when a human readable contract address is passed to
addr_validate
in the contracts core logicExample with Juno addresses:
usize of a human readable Juno wallet address = 43 ✅
usize of a human readable Juno contract address = 63 ❌
Increasing this to something that supports contract addresses makes sense, perhaps 100 to support chains with longer prefixes
The text was updated successfully, but these errors were encountered: