From e42aeb94ba6ef6406fb06d300ab2c704fd88a687 Mon Sep 17 00:00:00 2001 From: philemon Date: Mon, 30 Oct 2017 12:18:44 +0300 Subject: [PATCH] Version 0.9.5 --- data_files/mmgen.cfg | 2 +- doc/wiki/using-mmgen/Getting-Started-with-MMGen.md | 6 +++--- mmgen/globalvars.py | 2 +- mmgen/protocol.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/data_files/mmgen.cfg b/data_files/mmgen.cfg index f319edc1..58c147de 100644 --- a/data_files/mmgen.cfg +++ b/data_files/mmgen.cfg @@ -47,7 +47,7 @@ # usr_randchars 30 # Set the maximum transaction fee for BTC: -# btc_max_tx_fee 0.01 +# btc_max_tx_fee 0.003 # Set the maximum transaction fee for BCH: # bch_max_tx_fee 0.1 diff --git a/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md b/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md index 0ef856a0..e42f4d30 100644 --- a/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md +++ b/doc/wiki/using-mmgen/Getting-Started-with-MMGen.md @@ -745,7 +745,7 @@ This also works both on the command line and at the interactive prompt. The satoshis-per-byte specification is an integer followed by the letter 's'. A fee of 90 satoshis per byte is thus represented as '90s'. -MMGen has a hard maximum fee (currently 0.01 BTC) which is alterable only in the +MMGen has a hard maximum fee (currently 0.003 BTC) which is alterable only in the config file. Thus MMGen will never create or broadcast any transaction with a mistakenly or dangerously high fee unless you expressly permit it to. @@ -852,10 +852,10 @@ them in turn until you get a confirmation: To use MMGen with Bitcoin Cash (BCH) or Litecoin (LTC), first make sure the Bitcoin ABC or Litecoin daemon is properly installed -([source][si])([binaries][bi]) and [running][p8]. +([source][si])([binaries][bi]), [running][p8] and synced. MMGen requires that the bitcoin-abc daemon be listening on non-standard -[port 8442][p8]. +[RPC port 8442][p8]. Then just add the `--coin=bch` or `--coin=ltc` option to all your MMGen commands. It's that simple! diff --git a/mmgen/globalvars.py b/mmgen/globalvars.py index 34c2d0d7..cae9d8c9 100755 --- a/mmgen/globalvars.py +++ b/mmgen/globalvars.py @@ -38,7 +38,7 @@ class g(object): # Constants: - version = '0.9.499' + version = '0.9.5' release_date = 'November 2017' proj_name = 'MMGen' diff --git a/mmgen/protocol.py b/mmgen/protocol.py index 6e2145e6..cfcf0e0a 100755 --- a/mmgen/protocol.py +++ b/mmgen/protocol.py @@ -63,7 +63,7 @@ class BitcoinProtocol(MMGenObject): rpc_port = 8332 secs_per_block = 600 coin_amt = BTCAmt - max_tx_fee = BTCAmt('0.01') + max_tx_fee = BTCAmt('0.003') daemon_data_dir = os.path.join(os.getenv('APPDATA'),'Bitcoin') if g.platform == 'win' \ else os.path.join(g.home_dir,'.bitcoin') daemon_data_subdir = ''