Skip to content

Commit

Permalink
composeAll takes a List rather than a Set
Browse files Browse the repository at this point in the history
  • Loading branch information
janmasrovira committed Feb 12, 2025
1 parent 4af2534 commit 01b38dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Applib/Helpers.juvix
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ prepareStandardTransaction
};
};

composeAll (txs : Set BaseLayer.Transaction) : BaseLayer.Transaction :=
composeAll (txs : List BaseLayer.Transaction) : BaseLayer.Transaction :=
for (acc := emptyTx) (tx in txs) {
BaseLayer.compose acc tx
};
Expand Down

0 comments on commit 01b38dd

Please sign in to comment.