Skip to content

Commit

Permalink
update chainspec
Browse files Browse the repository at this point in the history
  • Loading branch information
driemworks committed Jan 18, 2024
1 parent 8f4e1f5 commit 246472b
Show file tree
Hide file tree
Showing 3 changed files with 347 additions and 7 deletions.
340 changes: 340 additions & 0 deletions chainspec.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion etfDevSpecRaw.json

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,12 +369,12 @@ impl pallet_scheduler::Config for Runtime {
}

parameter_types! {
// pub const DepositPerItem: Balance = deposit(0, 1);
// pub const DepositPerByte: Balance = deposit(1, 0);
// pub const DefaultDepositLimit: Balance = deposit(128 * 1024, 2 * 1024 * 1024);
pub const DepositPerItem: Balance = deposit(0, 0);
pub const DepositPerByte: Balance = deposit(0, 0);
pub const DefaultDepositLimit: Balance = deposit(0, 0);
pub const DepositPerItem: Balance = deposit(0, 1);
pub const DepositPerByte: Balance = deposit(1, 0);
pub const DefaultDepositLimit: Balance = deposit(128 * 1024, 2 * 1024 * 1024);
// pub const DepositPerItem: Balance = deposit(0, 0);
// pub const DepositPerByte: Balance = deposit(0, 0);
// pub const DefaultDepositLimit: Balance = deposit(0, 0);
pub Schedule: pallet_contracts::Schedule<Runtime> = Default::default();
// pub CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30);
pub CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(0);
Expand Down

0 comments on commit 246472b

Please sign in to comment.