Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Linter fix
  • Loading branch information
MajorLift committed May 22, 2024
commit 1f5a16e05f2941d9539c2e74362a22b81d376288
4 changes: 2 additions & 2 deletions src/transaction-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ export type EIP2930Transaction = TypedTransaction & {
* List of addresses and storage keys that the transaction plans to access
*/
accessList:
| { address: Hex; storageKeys: Hex[] }[]
| { address: Uint8Array; storageKeys: Uint8Array[] }[];
| { address: Hex; storageKeys: Hex[] }[]
| { address: Uint8Array; storageKeys: Uint8Array[] }[];
};

/**
Expand Down