Skip to content

Commit

Permalink
account: fix chain id comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
attente committed Nov 15, 2024
1 parent 8396d72 commit fe79711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/account/src/account.ts
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ export class Account {
// Add wallet deployment if needed
if (!status.onChain.deployed) {
let gasLimit: bigint | undefined
switch (chainId) {
switch (BigInt(chainId)) {
case BigInt(ChainId.SKALE_NEBULA):
gasLimit = 10000000n
break
Expand Down

0 comments on commit fe79711

Please sign in to comment.