Skip to content

Commit

Permalink
Remove hardcoded arg in NotImplementedError
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree authored Jan 18, 2025
1 parent bd83437 commit 8a18c4a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion packages/drift/src/utils/testing/StubStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ export class NotImplementedError extends DriftError {
key,
args,
}: { method: string; key?: string; args?: any[] }) {
args?.push(BigInt(1.5e18));
super(
`Missing stub${key ? ` with key "${key}"` : ""} for ${method} method.
Expand Down

0 comments on commit 8a18c4a

Please sign in to comment.