File tree 2 files changed +3
-6
lines changed
2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -522,10 +522,7 @@ pub fn testnet_genesis(
522
522
min_join_bond : DOLLARS ,
523
523
..Default :: default ( )
524
524
} ,
525
- base_fee : {
526
- let todo = "tune the values" ;
527
- BaseFeeConfig :: new ( 0x666666 . into ( ) , Permill :: from_percent ( 0 ) )
528
- } ,
525
+ base_fee : BaseFeeConfig :: new ( 100_000_000_000_u64 . into ( ) , Permill :: zero ( ) ) ,
529
526
dynamic_fee : DynamicFeeConfig :: default ( ) ,
530
527
ethereum : Default :: default ( ) ,
531
528
evm : Default :: default ( ) ,
Original file line number Diff line number Diff line change @@ -1696,8 +1696,8 @@ impl pallet_dynamic_fee::Config for Runtime {
1696
1696
}
1697
1697
1698
1698
parameter_types ! {
1699
- pub DefaultBaseFeePerGas : U256 = U256 :: from ( 1_000_000_000 ) ;
1700
- pub DefaultElasticity : Permill = Permill :: from_parts ( 125_000 ) ;
1699
+ pub DefaultBaseFeePerGas : U256 = 100_000_000_000_u64 . into ( ) ;
1700
+ pub DefaultElasticity : Permill = Permill :: zero ( ) ;
1701
1701
}
1702
1702
1703
1703
pub struct BaseFeeThreshold ;
You can’t perform that action at this time.
0 commit comments