Skip to content

Commit

Permalink
Fix typings for Account Sequence Number (#203)
Browse files Browse the repository at this point in the history
The actual constructor only takes a sequence number of type string.
  • Loading branch information
ryanleecode authored and abuiles committed Jul 17, 2019
1 parent 261c8e6 commit 5e3157d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
export {};

export class Account {
constructor(accountId: string, sequence: string | number);
constructor(accountId: string, sequence: string);
accountId(): string;
sequenceNumber(): string;
incrementSequenceNumber(): void;
Expand Down

0 comments on commit 5e3157d

Please sign in to comment.