Skip to content

Commit

Permalink
fix(types): change type of block_number from number to `BlockNumb…
Browse files Browse the repository at this point in the history
…er` in TransactionReceipt
  • Loading branch information
dhruvkelawala committed Feb 4, 2022
1 parent 9f9f6a2 commit 7a48ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export type TransactionReceipt = {
transaction_hash: string;
transaction_index: number;
block_hash: string;
block_number: number;
block_number: BlockNumber;
l2_to_l1_messages: string[];
events: string[];
};

0 comments on commit 7a48ff8

Please sign in to comment.