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

Commit 082aa0a

Browse files
committed
increased default miner fee to 30k satoshi because prices seem to have gone up
1 parent 2ef3799 commit 082aa0a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

patientsendpayment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def main():
116116
'waiting for someone to fill it. After a set period of time, gives' +
117117
' up waiting and acts as a taker and coinjoins any remaining coins')
118118
parser.add_option('-f', '--txfee', action='store', type='int', dest='txfee',
119-
default=10000, help='miner fee contribution, in satoshis, default=10000')
119+
default=30000, help='miner fee contribution, in satoshis, default=30000')
120120
parser.add_option('-N', '--makercount', action='store', type='int', dest='makercount',
121121
help='how many makers to coinjoin with when taking liquidity, default=2', default=2)
122122
parser.add_option('-w', '--wait-time', action='store', type='float', dest='waittime',

sendpayment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def main():
137137
'wallet to an given address using coinjoin and then switches off. Also sends from bitcoinqt. ' +
138138
'Setting amount to zero will do a sweep, where the entire mix depth is emptied')
139139
parser.add_option('-f', '--txfee', action='store', type='int', dest='txfee',
140-
default=10000, help='total miner fee in satoshis, default=10000')
140+
default=30000, help='total miner fee in satoshis, default=30000')
141141
parser.add_option('-w', '--wait-time', action='store', type='float', dest='waittime',
142142
help='wait time in seconds to allow orders to arrive, default=5', default=5)
143143
parser.add_option('-N', '--makercount', action='store', type='int', dest='makercount',

tumbler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ def main():
261261
+ 'coins being left in higher mixing levels, this option can be used to resume without needing'
262262
+ ' to send to another address. default=0', default=0)
263263
parser.add_option('-f', '--txfee', type='int', dest='txfee',
264-
default=10000, help='total miner fee in satoshis, default=10000')
264+
default=30000, help='total miner fee in satoshis, default=30000')
265265
parser.add_option('-a', '--addrcount', type='int', dest='addrcount',
266266
default=3, help='How many destination addresses in total should be used. If not enough are given'
267267
' as command line arguments, the script will ask for more. This parameter is required'

0 commit comments

Comments
 (0)