Skip to content

Commit 633787c

Browse files
committed
fix: zero gas
1 parent 0ed26ea commit 633787c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

yarn-project/circuit-types/src/test/factories.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ScopedLogHash,
1717
TxConstantData,
1818
} from '@aztec/circuits.js';
19-
import { makeCombinedAccumulatedData, makeGas, makePrivateToPublicAccumulatedData } from '@aztec/circuits.js/testing';
19+
import { makeCombinedAccumulatedData, makePrivateToPublicAccumulatedData } from '@aztec/circuits.js/testing';
2020
import { makeTuple } from '@aztec/foundation/array';
2121

2222
import { type MerkleTreeReadOperations } from '../interfaces/merkle_tree_operations.js';
@@ -121,8 +121,8 @@ export function makeBloatedProcessedTx({
121121
);
122122

123123
const gasUsed = {
124-
totalGas: makeGas(),
125-
teardownGas: makeGas(),
124+
totalGas: Gas.empty(),
125+
teardownGas: Gas.empty(),
126126
};
127127

128128
return makeProcessedTxFromTxWithPublicCalls(

0 commit comments

Comments
 (0)