Skip to content

Commit d6531ce

Browse files
committed
[Issue-4320] fix: error connecting to Aleph Zero EVM dapp
1 parent 0d95cc2 commit d6531ce

File tree

1 file changed

+1
-1
lines changed
  • packages/extension-base/src/core/logic-validation

1 file changed

+1
-1
lines changed

packages/extension-base/src/core/logic-validation/request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ export async function validationEvmDataTransactionMiddleware (koni: KoniState, u
455455
transaction.maxPriorityFeePerGas = feeCombine.maxPriorityFeePerGas;
456456
} else if (feeCombine.gasPrice) {
457457
estimateGas = new BigN((feeCombine.gasPrice || 0)).multipliedBy(gasLimit).toFixed(0);
458-
transaction.maxPriorityFeePerGas = feeCombine.gasPrice;
458+
transaction.gasPrice = feeCombine.gasPrice;
459459
}
460460
}
461461
} catch (e) {

0 commit comments

Comments
 (0)