Skip to content

Commit b6d05a1

Browse files
committed
Fix merge conflicts
1 parent f84ed39 commit b6d05a1

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

packages/sequencer/src/settlement/transactions/MinaTransactionSimulator.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
} from "o1js";
1414
import {
1515
ACTIONS_EMPTY_HASH,
16-
MINA_EVENT_PREFIXES,
16+
MINA_PREFIXES,
1717
ReturnType,
1818
} from "@proto-kit/protocol";
1919
import { match } from "ts-pattern";
@@ -301,10 +301,10 @@ export class MinaTransactionSimulator {
301301
// populate the full array with the current value
302302
const previousActionState =
303303
account.zkapp.actionState.at(0) ?? ACTIONS_EMPTY_HASH;
304-
const newActionsHash = hashWithPrefix(
305-
MINA_EVENT_PREFIXES.sequenceEvents,
306-
[previousActionState, actions.hash]
307-
);
304+
const newActionsHash = hashWithPrefix(MINA_PREFIXES.sequenceEvents, [
305+
previousActionState,
306+
actions.hash,
307+
]);
308308
account.zkapp.actionState = range(0, 5).map(() => newActionsHash);
309309
}
310310
}

packages/sequencer/test/settlement/Settlement.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
mapSequential,
44
TypedClass,
55
RollupMerkleTree,
6-
sleep,
76
} from "@proto-kit/common";
87
import { VanillaProtocolModules } from "@proto-kit/library";
98
import { Runtime } from "@proto-kit/module";

0 commit comments

Comments
 (0)