Skip to content

Commit

Permalink
fix turing vesting (#118)
Browse files Browse the repository at this point in the history
* Change vesting timestamps from 5th of month to 1st of month

* add vesting schedule injection for turing

* add VestingConfig

Co-authored-by: Irsal Alsanea <[email protected]>
Co-authored-by: Justin Zhou <[email protected]>
  • Loading branch information
3 people committed Mar 15, 2022
1 parent 5de5a86 commit 31df696
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/src/chain_spec/turing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use crate::chain_spec::{
};
use primitives::{AccountId, AuraId, Balance};
use turing_runtime::{
CouncilConfig, SudoConfig, TechnicalMembershipConfig, ValveConfig, DOLLAR, EXISTENTIAL_DEPOSIT, TOKEN_DECIMALS,
CouncilConfig, SudoConfig, TechnicalMembershipConfig, ValveConfig, VestingConfig, DOLLAR, EXISTENTIAL_DEPOSIT, TOKEN_DECIMALS,
};

static TOKEN_SYMBOL: &str = "TUR";
Expand Down Expand Up @@ -349,7 +349,7 @@ fn testnet_genesis(
sudo: SudoConfig { key: Some(root_key) },
treasury: Default::default(),
valve: ValveConfig { start_with_valve_closed: false, closed_gates: pallet_gates_closed },
vesting: Default::default(),
vesting: VestingConfig { vesting_schedule },
}
}

Expand Down

0 comments on commit 31df696

Please sign in to comment.