Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,9 @@ describe('e2e_deploy_contract deploy method', () => {

// First send the deploy transaction
// Pay priority fee to ensure the deployment transaction gets processed first.
const maxPriorityFeesPerGas = new GasFees(1n, 0n);
// Use L2 gas priority (not DA) because DA gas fees can be zero, and priority fees
// are capped by maxFeesPerGas, so a DA priority of 1 gets capped to min(0, 1) = 0.
const maxPriorityFeesPerGas = new GasFees(0n, 1n);
const deployTxPromise = deployTx.send({
from: defaultAccountAddress,
fee: { gasSettings: { maxPriorityFeesPerGas } },
Expand Down
1 change: 1 addition & 0 deletions yarn-project/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1902,6 +1902,7 @@ __metadata:
"@aztec/foundation": "workspace:^"
"@aztec/kv-store": "workspace:^"
"@aztec/l1-artifacts": "workspace:^"
"@aztec/native": "workspace:^"
"@aztec/node-keystore": "workspace:^"
"@aztec/node-lib": "workspace:^"
"@aztec/noir-protocol-circuits-types": "workspace:^"
Expand Down
Loading