Skip to content

Commit

Permalink
hotfix: txEffect deluxe type
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipHarald committed Oct 15, 2024
1 parent 8e457eb commit 859f63e
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/types/src/aztec/deluxe.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { z } from "zod";
import { ChicmozL2Block, chicmozL2BlockSchema } from "./l2Block.js";
import { chicmozL2BlockSchema } from "./l2Block.js";
import {
chicmozL2ContractClassRegisteredEventSchema,
chicmozL2ContractInstanceDeployedEventSchema,
Expand All @@ -26,8 +26,5 @@ export const chicmozL2TxEffectDeluxeSchema = z.object({
});

export type ChicmozL2TxEffectDeluxe = z.infer<
typeof chicmozL2TxEffectSchema & {
blockHeight: ChicmozL2Block["height"];
timestamp: ChicmozL2Block["header"]["globalVariables"]["timestamp"];
}
typeof chicmozL2TxEffectDeluxeSchema
>;

0 comments on commit 859f63e

Please sign in to comment.