-
Notifications
You must be signed in to change notification settings - Fork 353
New issue
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
Migrate to v0.11 2 #107
Migrate to v0.11 2 #107
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good stuff. Thank you for finishing this.
use thiserror::Error; | ||
|
||
#[derive(Error, Debug)] | ||
pub enum ContractError { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice set of error messages
// we delete the escrow (TODO: expose this in Bucket for simpler API) | ||
prefixed(&mut deps.storage, PREFIX_ESCROW).remove(id.as_bytes()); | ||
// we delete the escrow | ||
escrows(&mut deps.storage).remove(id.as_bytes()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
Migration of remaining contracts (cw3-fixed-multisig and cw721-base) to cosmwasm 0.11.0-alpha3.
Also, a couple of fixes and improvements that were left out in the previous iteration.