Skip to content

Commit

Permalink
Reduce TransactionByteFee on all networks (#235)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebma authored May 11, 2023
1 parent e4cbd6c commit b444b5b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions runtime/amplitude/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -459,8 +459,7 @@ impl pallet_balances::Config for Runtime {
}

parameter_types! {
/// Relay Chain `TransactionByteFee` / 10
pub const TransactionByteFee: Balance = 10 * MICROUNIT;
pub const TransactionByteFee: Balance = 100 * NANOUNIT;
pub const OperationalFeeMultiplier: u8 = 5;
}

Expand Down
3 changes: 1 addition & 2 deletions runtime/foucoco/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,7 @@ impl pallet_balances::Config for Runtime {
}

parameter_types! {
/// Relay Chain `TransactionByteFee` / 10
pub const TransactionByteFee: Balance = 10 * MICROUNIT;
pub const TransactionByteFee: Balance = 100 * NANOUNIT;
pub const OperationalFeeMultiplier: u8 = 5;
}

Expand Down
3 changes: 1 addition & 2 deletions runtime/pendulum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -373,8 +373,7 @@ impl pallet_balances::Config for Runtime {
}

parameter_types! {
/// Relay Chain `TransactionByteFee` / 10
pub const TransactionByteFee: Balance = 10 * MICROUNIT;
pub const TransactionByteFee: Balance = 100 * NANOUNIT;
pub const OperationalFeeMultiplier: u8 = 5;
}

Expand Down

0 comments on commit b444b5b

Please sign in to comment.