-
Notifications
You must be signed in to change notification settings - Fork 125
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
update to newest substrate #479
Conversation
…ow_death (substrate changes)
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.
Cool, thanks for the fix!
// We expect a TokenError::FundsUnavailable error. See : | ||
//https://github.com/paritytech/substrate/blob/b42a687c9050cbe04849c45b0c5ccadb82c84948/frame/support/src/traits/tokens/fungible/mod.rs#L177 | ||
assert!(string_error.contains("Other")); | ||
assert!(string_error.contains("[7, 0, 194, 110, 3, 65, 37, 56, 0, 0]")); //This is for now not decoded. See issue |
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.
Can you add the issue number and a FIXME?
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.
LGTM. Seems you always get the nasty upgrades 😆
On the plus side the cargo update
fixed #474 (remove_dir_all
is not in the Cargo.lock
anymore)
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.
🥳
Currency
; introduce holds and freezing intofungible
traits paritytech/substrate#12951. Note that- free, locked and reserved balances are defined differently
- Existential Deposit requirements to be made of the free balance, not the total balance
- set_balance is new force_set_balance
- transfer is transfer_allow_death