Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Jan 3, 2025
1 parent 6c74980 commit 0567458
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 35 deletions.
33 changes: 0 additions & 33 deletions avm-transpiler/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion noir-projects/noir-protocol-circuits/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"main": "index.js",
"dependencies": {
"@iarna/toml": "^2.2.5"
}
},
"packageManager": "yarn@4.5.2+sha512.570504f67349ef26d2d86a768dc5ec976ead977aa086b0bb4237e97d5db7ae5c620f9f0e0edf3ea5047205063faff102bf2a2d778664a94eaaa1085ad483fe2e"
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import {
makeUnconstrainedFunctionWithMembershipProof,
} from '@aztec/circuits.js/testing';
import { times } from '@aztec/foundation/collection';
import { randomBytes, randomInt } from '@aztec/foundation/crypto';
import { randomInt } from '@aztec/foundation/crypto';

import { type ArchiverDataStore, type ArchiverL1SynchPoint } from './archiver_store.js';
import { type L1Published } from './structs/published.js';
Expand Down
4 changes: 4 additions & 0 deletions yarn-project/circuit-types/src/tx/tx_hash.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ export class TxHash {
return this.hash.toBigInt();
}

toJSON() {
return this.toString();
}

public equals(other: TxHash) {
return this.hash.equals(other.hash);
}
Expand Down

0 comments on commit 0567458

Please sign in to comment.