Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
increased default miner fee to 30k satoshi because prices seem to hav…
Browse files Browse the repository at this point in the history
…e gone up
  • Loading branch information
chris-belcher committed Dec 13, 2015
1 parent 2ef3799 commit 082aa0a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion patientsendpayment.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def main():
'waiting for someone to fill it. After a set period of time, gives' +
' up waiting and acts as a taker and coinjoins any remaining coins')
parser.add_option('-f', '--txfee', action='store', type='int', dest='txfee',
default=10000, help='miner fee contribution, in satoshis, default=10000')
default=30000, help='miner fee contribution, in satoshis, default=30000')
parser.add_option('-N', '--makercount', action='store', type='int', dest='makercount',
help='how many makers to coinjoin with when taking liquidity, default=2', default=2)
parser.add_option('-w', '--wait-time', action='store', type='float', dest='waittime',
Expand Down
2 changes: 1 addition & 1 deletion sendpayment.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def main():
'wallet to an given address using coinjoin and then switches off. Also sends from bitcoinqt. ' +
'Setting amount to zero will do a sweep, where the entire mix depth is emptied')
parser.add_option('-f', '--txfee', action='store', type='int', dest='txfee',
default=10000, help='total miner fee in satoshis, default=10000')
default=30000, help='total miner fee in satoshis, default=30000')
parser.add_option('-w', '--wait-time', action='store', type='float', dest='waittime',
help='wait time in seconds to allow orders to arrive, default=5', default=5)
parser.add_option('-N', '--makercount', action='store', type='int', dest='makercount',
Expand Down
2 changes: 1 addition & 1 deletion tumbler.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ def main():
+ 'coins being left in higher mixing levels, this option can be used to resume without needing'
+ ' to send to another address. default=0', default=0)
parser.add_option('-f', '--txfee', type='int', dest='txfee',
default=10000, help='total miner fee in satoshis, default=10000')
default=30000, help='total miner fee in satoshis, default=30000')
parser.add_option('-a', '--addrcount', type='int', dest='addrcount',
default=3, help='How many destination addresses in total should be used. If not enough are given'
' as command line arguments, the script will ask for more. This parameter is required'
Expand Down

0 comments on commit 082aa0a

Please sign in to comment.