Skip to content

Commit

Permalink
change balance def from u128 to u64 for europa v0.2 report test case …
Browse files Browse the repository at this point in the history
…2.2.3
  • Loading branch information
atenjin committed Apr 23, 2021
1 parent 6c79360 commit fd00272
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion bin/europa/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::Account
pub type AccountIndex = u32;

/// Balance of an account.
pub type Balance = u128;
// pub type Balance = u128;
pub type Balance = u64; // change this to u64 for test europa v0.2 report 2.2.3 part

/// Index of a transaction in the chain.
pub type Index = u32;
Expand Down

0 comments on commit fd00272

Please sign in to comment.