Skip to content

Commit

Permalink
Fixed deposit variable reference
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinejohn committed Nov 5, 2014
1 parent 78d6394 commit c60ed7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/dwolla.js
Expand Up @@ -481,7 +481,7 @@ exports.deposit = function(oauth_token, pin, sourceId, amount, fn) {
params.pin = pin;
params.sourceId= sourceId;
params.amount = amount;
_post('/fundingsources/' + id + '/withdraw', params, fn);
_post('/fundingsources/' + sourceId + '/withdraw', params, fn);
};

/**
Expand Down

0 comments on commit c60ed7d

Please sign in to comment.