Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix account.sendLSK param names
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed May 4, 2017
1 parent f64927e commit a346286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/services/account.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ app.factory('Account', function ($rootScope, $peers, $q) {
return deferred.promise;
};

this.sendLSK = (recipientId, amount, passphrase, secondPassphrase) => $peers.sendRequestPromise('transactions', { recipientId, amount, secret, secondSecret });
this.sendLSK = (recipientId, amount, secret, secondSecret) => $peers.sendRequestPromise('transactions', { recipientId, amount, secret, secondSecret });

this.listTransactions = (address, limit, offset) => $peers.sendRequestPromise('transactions', {
senderId: address,
Expand Down

0 comments on commit a346286

Please sign in to comment.