In JoinMarket, whenever transaction fees are manually set, the fees are varied by +/-20% to prevent fee correlation. I want to turn off this 20% fee variation feature temporarily for something I'm doing, but I don't see anything in the [i]joinmarket.cfg[/i] regarding it. Do any of you know how I can turn it off?
[b][SOLVED][/b]
Go to [code]joinmarket-clientserver/jmclient/jmclient/blockchaininterface.py
Replace
return int(max(relayfee_in_sat, random.uniform(N * float(0.8), N * float(1.2))))
with
return(N)
and
Replace
return int(max(1000, random.uniform(N * float(0.8), N * float(1.2))))
with code]return(N)[/code]
Alternatively, you can comment the line out with a
#
and and add
return(N)
underneath instead of replacing.