Skip to content

Commit

Permalink
chore: Export merkle tree node position type (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xShisui authored Mar 22, 2023
1 parent 0521140 commit 7870041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ export interface Taker {
}

/** Merkle tree node position (needed by the SC) */
enum MerkleTreeNodePosition {
Left,
Right,
export enum MerkleTreeNodePosition {
Left = 0,
Right = 1,
}

/** Merkle root object to be used in the execute function for a multi listing */
Expand Down

0 comments on commit 7870041

Please sign in to comment.