Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
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
Prev Previous commit
restore balance/bondage types
  • Loading branch information
rphmeier committed Mar 12, 2018
commit a4dca1cf9acac5bc0fe151115edb59435045c2a6
5 changes: 4 additions & 1 deletion polkadot/runtime/src/runtime/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ use rstd::cell::RefCell;
use runtime_io::print;
use codec::KeyedVec;
use runtime_support::{storage, StorageVec};
use polkadot_primitives::{Balance, Bondage, BlockNumber, AccountId};
use polkadot_primitives::{BlockNumber, AccountId};
use primitives::bft::{MisbehaviorReport, MisbehaviorKind};
use runtime::{system, session, governance, consensus};

type Balance = u64;
type Bondage = u64;

struct IntentionStorageVec {}
impl StorageVec for IntentionStorageVec {
type Item = AccountId;
Expand Down