Skip to content

Commit

Permalink
Take dust threshold directly from bitcoinjs.
Browse files Browse the repository at this point in the history
  • Loading branch information
caedesvvv committed Oct 16, 2014
1 parent afc4a1d commit 08fbdcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/model/wallet.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function Wallet(store, identity) {
this.pubKeys = store.init('pubkeys', {});
this.scanKeys = store.init('scankeys', []);
this.idKeys = store.init('idkeys', []);
this.dust = 546;
this.dust = Bitcoin.networks[this.network].dustThreshold;

this.mpk = store.get('mpk');

Expand Down

0 comments on commit 08fbdcc

Please sign in to comment.