Skip to content

Commit 850c08a

Browse files
bdchathamclaude
andcommitted
fix: add params module to pacific-1 genesis
The params module genesis was null, causing seid v6.4.1 to panic during InitGenesis with "cosmos gas multiplier numerator can not be 0". The zero-value CosmosGasParams fails validation in SetCosmosGasParams. Populates the params module with on-chain values queried from a running pacific-1 node: - cosmosGasMultiplierNumerator: 1 - cosmosGasMultiplierDenominator: 1 - globalMinimumGasPrices: 0.02 usei Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 83fd794 commit 850c08a

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

chains/pacific-1/genesis.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2437,7 +2437,15 @@
24372437
"aggregate_exchange_rate_votes": [],
24382438
"price_snapshots": []
24392439
},
2440-
"params": null,
2440+
"params": {
2441+
"feesParams": {
2442+
"globalMinimumGasPrices": [{"denom": "usei", "amount": "0.020000000000000000"}]
2443+
},
2444+
"cosmosGasParams": {
2445+
"cosmosGasMultiplierNumerator": "1",
2446+
"cosmosGasMultiplierDenominator": "1"
2447+
}
2448+
},
24412449
"slashing": {
24422450
"params": {
24432451
"signed_blocks_window": "108000",

0 commit comments

Comments
 (0)