Skip to content

Commit

Permalink
refactor: rename proofs to proof records
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Oct 16, 2024
1 parent cee4b9a commit 311f737
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Anoma/Transaction/Action.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type Action :=
mkAction {
commitments : Set Resource.Commitment;
nullifiers : Set Resource.Nullifier;
proofs : Set ProofRecord;
proofRecords : Set ProofRecord;
appData : AppData
};

Expand All @@ -30,7 +30,7 @@ module ActionInternal;
compare (lhs rhs : Action) : Ordering :=
let
prod (a : Action) : _ :=
Action.commitments a, Action.nullifiers a, Action.proofs a, Action.appData a;
Action.commitments a, Action.nullifiers a, Action.proofRecords a, Action.appData a;
in Ord.cmp (prod lhs) (prod rhs);

--- Implements the ;Ord; trait for ;Action;.
Expand Down

0 comments on commit 311f737

Please sign in to comment.