Skip to content

Commit

Permalink
node: LengthFeeAdjustment chain spec fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriele-0201 committed Feb 16, 2024
1 parent bcd3589 commit 3ca6546
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sugondat/chain/node/src/chain_spec/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,9 @@ fn test_runtime_genesis_patch(
"safeXcmVersion": Some(SAFE_XCM_VERSION),
},
"sudo": { "key": Some(root) },
"pallet-sugondat-length-fee-adjustment": {
"next_length_multiplier": next_len_mult,
"target_block_size": target_block_size
"lengthFeeAdjustment": {
"nextLengthMultiplier": next_len_mult,
"targetBlockSize": target_block_size
}
})
}
Expand Down Expand Up @@ -309,9 +309,9 @@ fn kusama_runtime_genesis_patch(
"safeXcmVersion": Some(SAFE_XCM_VERSION),
},
"sudo": { "key": Some(root) },
"pallet-sugondat-length-fee-adjustment": {
"next_length_multiplier": next_len_mult,
"target_block_size": target_block_size
"lengthFeeAdjustment": {
"nextLengthMultiplier": next_len_mult,
"targetBlockSize": target_block_size
}
})
}

0 comments on commit 3ca6546

Please sign in to comment.