Skip to content

Commit

Permalink
more code style
Browse files Browse the repository at this point in the history
  • Loading branch information
mitschabaude committed Apr 10, 2024
1 parent fe30b9a commit 41fb3ed
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/lib/provable/merkle-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ import { MerkleTree, MerkleWitness } from './merkle-tree.js';
import { Provable } from './provable.js';
import { BinableFp } from '../../mina-signer/src/field-bigint.js';

export class MerkleMap {
export { MerkleMap, MerkleMapWitness };

class MerkleMap {
tree: MerkleTree;

/**
Expand Down Expand Up @@ -69,7 +71,7 @@ export class MerkleMap {
}
}

export class MerkleMapWitness extends CircuitValue {
class MerkleMapWitness extends CircuitValue {
@arrayProp(Bool, 255) isLefts: Bool[];
@arrayProp(Field, 255) siblings: Field[];

Expand Down

0 comments on commit 41fb3ed

Please sign in to comment.