Skip to content

Commit

Permalink
Fixed Signer call not forwarding blockTag (#768).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Apr 3, 2020
1 parent a656079 commit 053a2d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abstract-signer/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export abstract class Signer {
call(transaction: TransactionRequest, blockTag?: BlockTag): Promise<string> {
this._checkProvider("call");
return resolveProperties(this.checkTransaction(transaction)).then((tx) => {
return this.provider.call(tx);
return this.provider.call(tx, blockTag);
});
}

Expand Down

0 comments on commit 053a2d7

Please sign in to comment.