Skip to content

Commit

Permalink
Fix importing fallback transaction.
Browse files Browse the repository at this point in the history
  • Loading branch information
caedesvvv committed Oct 17, 2014
1 parent 0cef494 commit 65b18b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/backend/services/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ function(IdentityKeyRing, Port, CurrencyFormatting, TransactionTasks, Bitcoin, B
console.log("no fallback for this task!!", task);
return;
}
var tx = new Bitcoin.Transaction(task.fallback);
var tx = Bitcoin.Transaction.fromHex(task.fallback);
task.state = 'finished';
task.progress = 100;

Expand Down

0 comments on commit 65b18b1

Please sign in to comment.