Skip to content

Commit 3241ef2

Browse files
Merge pull request #353 from BitGo/CGD-190
fix: raise deploy gas limit for V4 contract CREATE
2 parents a6d3414 + 32352c2 commit 3241ef2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

scripts/chainConfig.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,6 +378,10 @@ export async function getChainConfig(chainId: number): Promise<ChainConfig> {
378378
break;
379379
}
380380

381+
if (chainId === CHAIN_IDS.HPP) {
382+
gasParams = { ...gasParams, gasLimit: 16_000_000 };
383+
}
384+
381385
return {
382386
walletImplementationContractName,
383387
walletFactoryContractName,

0 commit comments

Comments
 (0)