Skip to content

Commit

Permalink
lower default fee. fixes #403
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasV committed Apr 23, 2014
1 parent 12b3a78 commit 26c65dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/wallet.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def __init__(self, storage):
self.imported_keys = storage.get('imported_keys',{})
self.history = storage.get('addr_history',{}) # address -> list(txid, height)

self.fee = int(storage.get('fee_per_kb',20000))
self.fee = int(storage.get('fee_per_kb', 10000))

self.master_public_keys = storage.get('master_public_keys',{})
self.master_private_keys = storage.get('master_private_keys', {})
Expand Down

0 comments on commit 26c65dd

Please sign in to comment.