Skip to content

Commit

Permalink
fix: removed usage of wrapped provider
Browse files Browse the repository at this point in the history
  • Loading branch information
a0ngo committed Feb 7, 2024
1 parent e3fce1e commit bd78991
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ export class FireblocksSigner extends ProviderWrapperWithChainId {
}

public async request(args: RequestArguments): Promise<unknown> {
if (SIGNER_METHODS.includes(args.method)) {
return this._fireblocksWeb3Provider!.request(args);
}

return this._wrappedProvider.request(args);
return this._fireblocksWeb3Provider!.request(args);
}
}

0 comments on commit bd78991

Please sign in to comment.