Skip to content

Commit

Permalink
fix(signer): fix populateFeeData provider check
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion committed Aug 27, 2024
1 parent 920b120 commit b89429b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ export class Signer extends AdapterL2(ethers.JsonRpcSigner) {
'Provide combination of maxFeePerGas and maxPriorityFeePerGas or provide gasPrice. Not both!'
);
}
if (this.providerL2) {
if (!this.providerL2) {
throw new Error('Initialize provider L2');
}
if (
Expand Down

0 comments on commit b89429b

Please sign in to comment.