File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ try-runtime = [
141
141
" pallet-authorship/try-runtime" ,
142
142
" pallet-balances/try-runtime" ,
143
143
" pallet-elections/try-runtime" ,
144
+ " pallet-operations/try-runtime" ,
144
145
" pallet-identity/try-runtime" ,
145
146
" pallet-insecure-randomness-collective-flip/try-runtime" ,
146
147
" pallet-session/try-runtime" ,
Original file line number Diff line number Diff line change @@ -106,7 +106,9 @@ pub async fn fee_calculation() -> anyhow::Result<()> {
106
106
/// amount is equal to the existential deposit of the chain.
107
107
async fn fill_blocks ( block_occupancy : BlockOccupancy , blocks : u32 , connection : & SignedConnection ) {
108
108
let limit = match block_occupancy {
109
- BlockOccupancy :: Low => 140 ,
109
+ // 850 transfers == 37.3% weight < 37.5% == 50% of 75% that is maximum real block occupancy for transfer transactions
110
+ BlockOccupancy :: Low => 850 ,
111
+ // above 37.5% block weight
110
112
BlockOccupancy :: High => 1000 ,
111
113
} ;
112
114
You can’t perform that action at this time.
0 commit comments