Skip to content

Commit

Permalink
fix units after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl Ranna committed Dec 15, 2020
1 parent 0faf139 commit 720c65f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/connextclient/ConnextClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ class ConnextClient extends SwapClient {
const provider = getProvider(this.host, this.port, this.network, CHAIN_IDENTIFIERS[this.network]);
const signer = getSigner(provider, this.seed);
const contract = getContract(signer, this.getTokenAddress(currency));
const sendTransaction$ = onChainSendERC20(signer, contract, destination, units);
const sendTransaction$ = onChainSendERC20(signer, contract, destination, unitsStr);
sendTransaction$.subscribe({
// portal pack to imperative world
next: (transaction) => {
Expand Down

0 comments on commit 720c65f

Please sign in to comment.