1 2 3 4 5 6 7 8 9
#![cfg_attr(not(feature = "std"), no_std)] pub use wallet::*; pub mod wallet; /// An index to a block. pub type BlockNumber = u64; /// Balance of an account. pub type Balance = u128;
1 2 3 4 5 6 7 8 9
#![cfg_attr(not(feature = "std"), no_std)] pub use wallet::*; pub mod wallet; /// An index to a block. pub type BlockNumber = u64; /// Balance of an account. pub type Balance = u128;