-
Notifications
You must be signed in to change notification settings - Fork 30
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
Cosmwasm v1.0 #51
Cosmwasm v1.0 #51
Conversation
@reuvenpo suggested that we keep two separate branches - one for v0.10 and one for v1.0. |
Yeah let's make v1 the master once after the upgrade. v0.10 shouldn't get much new developments, just bug fixes IMO. |
Yes I mostly agree, although I think we should keep the v0.10 branch open for updates/features if the community wants backports. |
…eal cw-v1.0 contract
…ersioning is more in sync with the master branch now. Cashmap removed from the incubator much like the master branch
… behaviour is to import the highest compatible version
…w 1.0 allows generic errors in entry points unlike cw 0.1
…m. Expanded the tests for Item
Storage sub-package is updated (Cosmwasm v1.0 Fork)
cw-v1 fix linter errors
…e revoked permit key
Cosmwasm v1.0 fix revoke permit
Dev 0.5 Update (for Cosmwasm v1.0 Branch)
@@ -1,27 +1,32 @@ | |||
use cosmwasm_std::{HumanAddr, Storage}; | |||
use cosmwasm_std::Storage; | |||
|
|||
pub struct RevokedPermits; | |||
|
|||
impl RevokedPermits { | |||
pub fn is_permit_revoked( | |||
storgae: &dyn Storage, |
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.
typo
No description provided.