Skip to content

Commit 02a0aad

Browse files
committedMar 10, 2023
Move all wrapping to proper _wrap functions (#3818).
1 parent 278f841 commit 02a0aad

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎src.ts/providers/abstract-provider.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ export class AbstractProvider implements Provider {
492492
}
493493

494494
_wrapTransactionResponse(tx: TransactionResponseParams, network: Network): TransactionResponse {
495-
return new TransactionResponse(tx, this);
495+
return new TransactionResponse(formatTransactionResponse(tx), this);
496496
}
497497

498498
_detectNetwork(): Promise<Network> {
@@ -897,7 +897,7 @@ export class AbstractProvider implements Provider {
897897
});
898898
if (params == null) { return null; }
899899

900-
return this._wrapBlock(formatBlock(params), network);
900+
return this._wrapBlock(params, network);
901901
}
902902

903903
async getTransaction(hash: string): Promise<null | TransactionResponse> {
@@ -907,7 +907,7 @@ export class AbstractProvider implements Provider {
907907
});
908908
if (params == null) { return null; }
909909

910-
return this._wrapTransactionResponse(formatTransactionResponse(params), network);
910+
return this._wrapTransactionResponse(params, network);
911911
}
912912

913913
async getTransactionReceipt(hash: string): Promise<null | TransactionReceipt> {
@@ -925,7 +925,7 @@ export class AbstractProvider implements Provider {
925925
params.effectiveGasPrice = tx.gasPrice;
926926
}
927927

928-
return this._wrapTransactionReceipt(formatTransactionReceipt(params), network);
928+
return this._wrapTransactionReceipt(params, network);
929929
}
930930

931931
async getTransactionResult(hash: string): Promise<null | string> {
@@ -947,7 +947,7 @@ export class AbstractProvider implements Provider {
947947
params: this.#perform<Array<LogParams>>({ method: "getLogs", filter })
948948
});
949949

950-
return params.map((p) => this._wrapLog(formatLog(p), network));
950+
return params.map((p) => this._wrapLog(p, network));
951951
}
952952

953953
// ENS

0 commit comments

Comments
 (0)
Please sign in to comment.