Skip to content

Commit

Permalink
Allow nonce to be a BigNumber (#228).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Dec 12, 2018
1 parent 918b66b commit bcba17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src.ts/providers/abstract-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export interface TransactionReceipt {
export type TransactionRequest = {
to?: string | Promise<string>,
from?: string | Promise<string>,
nonce?: number | string | Promise<number | string>,
nonce?: BigNumberish | Promise<BigNumberish>,

gasLimit?: BigNumberish | Promise<BigNumberish>,
gasPrice?: BigNumberish | Promise<BigNumberish>,
Expand Down

1 comment on commit bcba17a

@ricmoo
Copy link
Member Author

@ricmoo ricmoo commented on bcba17a Dec 14, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should have been marked in the commit as addressing #301 (not #228)

Please sign in to comment.