Skip to content
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

initialize kton tests #33

Merged
merged 3 commits into from
Jul 8, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
update kton storage prefix
  • Loading branch information
sekisamu committed Jul 8, 2019
commit 2e424299e2d83a0e962aefa7a164193a6048bcc8
2 changes: 1 addition & 1 deletion srml/token/kton/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ decl_event!(


decl_storage! {
trait Store for Module<T: Trait> as KtonBalances {
Copy link
Contributor

@hackfisher hackfisher Jul 5, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are there storage compatible issues here? If true, does substrate have methods(e.g. migration design). To verify this question, maybe need do some testing

trait Store for Module<T: Trait> as Kton {

pub DepositLedger get(deposit_ledger): map T::AccountId => Option<Deposit<CurrencyOf<T>, T::Moment>>;

Expand Down