Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shunjizhan committed Nov 11, 2024
1 parent 8d94296 commit 749e8d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/eth-providers/src/base-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ export abstract class BaseProvider extends AbstractProvider {
extrinsic: SubmittableExtrinsic<'promise', ISubmittableResult>,
at?: string,
) => {
const blockHash = at ?? await this._getBlockHash('latest');
const blockHash = at ?? this.bestBlockHash;
const apiAt = await apiCache.getApiAt(this.api, blockHash);

const u8a = extrinsic.toU8a();
Expand Down

0 comments on commit 749e8d0

Please sign in to comment.