Skip to content
This repository has been archived by the owner on Jan 14, 2018. It is now read-only.

Commit

Permalink
Fix large size transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquez committed May 1, 2014
1 parent 2c80eef commit 0fa9bf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/js/models/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@

if (sizeEstimate > 1000) {
calculatedFee = Math.ceil(sizeEstimate / 1000) * 0.0001;
buildInputsAndOuptuts(amount, calculatedFee);
self._buildInputsAndOuptuts(result, toAddress, fromAddress, amount, calculatedFee);
}

if (result.inputs.length === 0) {
Expand Down

0 comments on commit 0fa9bf6

Please sign in to comment.