Skip to content

Commit

Permalink
convert getTransactionCount response to string
Browse files Browse the repository at this point in the history
  • Loading branch information
skubakdj committed Oct 18, 2017
1 parent fa53ce1 commit 88db5b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/libs/nodes/web3/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default class Web3Node implements INode {
if (err) {
return reject(err);
}
resolve(txCount);
resolve(txCount.toString());
})
);
}
Expand Down

0 comments on commit 88db5b9

Please sign in to comment.