Minor changes

The MMGen Project 2018-10-01 08:11:16 +00:00
commit a9891ad298
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
5 changed files with 27 additions and 22 deletions

@ -23,7 +23,7 @@
$ git clone https://github.com/mmgen/mmgen.git
$ cd mmgen
$ git checkout -b stable stable_linux
$ git checkout stable_linux
$ sudo ./setup.py install
$ cd ..

@ -201,6 +201,9 @@ one:
And so on and so forth, until we've generated all the keys we need: three, in our case.
If we're generating keys for Ethereum and Monero, our work is done: the raw
hexadecimal keys are all we need. Otherwise, read on.
#### <a name='a_hpw'>Converting the hex value to a password (password example)</a>
If it's passwords we're generating, we must now convert our hex key to the

@ -8,8 +8,9 @@
-c, --comment-file f Source the transaction's comment from file 'f'
-d, --outdir d Specify an alternate directory 'd' for output
-e, --echo-passphrase Print passphrase to screen when typing it
-f, --tx-fee f Transaction fee, as a decimal BTC amount or in
satoshis per byte (an integer followed by 's')
-f, --tx-fee f Transaction fee, as a decimal BTC amount or as
satoshis per byte (an integer followed by s).
See FEE SPECIFICATION below.
-H, --hidden-incog-input-params f,o Read hidden incognito data from file
'f' at offset 'o' (comma-separated)
-i, --in-fmt f Input is from wallet format 'f' (see FMT CODES below)
@ -42,7 +43,7 @@
FEE SPECIFICATION: Transaction fees, both on the command line and at the
interactive prompt, may be specified as either absolute BTC amounts, using
a plain decimal number, or as satoshis per byte, using an integer followed by
the letter 's'.
's', for satoshi.
Transactions may contain both MMGen or non-MMGen input addresses.

@ -8,9 +8,10 @@
-c, --comment-file f Source the transaction's comment from file 'f'
-C, --tx-confs c Desired number of confirmations (default: 3)
-d, --outdir d Specify an alternate directory 'd' for output
-f, --tx-fee f Transaction fee, as a decimal BTC amount or in satoshis
per byte (an integer followed by 's'). If omitted, fee
will be calculated using bitcoind's 'estimatefee' call
-f, --tx-fee f Transaction fee, as a decimal BTC amount or as
satoshis per byte (an integer followed by s).
See FEE SPECIFICATION below. If omitted, fee will be
calculated using network fee estimation.
-i, --info Display unspent outputs and exit
-L, --locktime t Lock time (block height or unix seconds) (default: 0)
-m, --minconf n Minimum number of confirmations required to spend
@ -26,11 +27,11 @@
are chosen from a list of the user's unpent outputs via an interactive menu.
If the transaction fee is not specified on the command line (see FEE
SPECIFICATION below), it will be calculated dynamically using bitcoind's
"estimatefee" function for the default (or user-specified) number of
confirmations. If "estimatefee" fails, the user will be prompted for a fee.
SPECIFICATION below), it will be calculated dynamically using network fee
estimation for the default (or user-specified) number of confirmations.
If network fee estimation fails, the user will be prompted for a fee.
Dynamic ("estimatefee") fees will be multiplied by the value of '--tx-fee-adj',
Network-estimated fees will be multiplied by the value of '--tx-fee-adj',
if specified.
Ages of transactions are approximate based on an average block discovery
@ -45,6 +46,6 @@
FEE SPECIFICATION: Transaction fees, both on the command line and at the
interactive prompt, may be specified as either absolute BTC amounts, using
a plain decimal number, or as satoshis per byte, using an integer followed by
the letter 's'.
's', for satoshi.
MMGEN v0.9.8 May 2018 MMGEN-TXCREATE(1)

@ -11,10 +11,10 @@
-C, --tx-confs c Desired number of confirmations (default: 3)
-d, --outdir d Specify an alternate directory 'd' for output
-e, --echo-passphrase Print passphrase to screen when typing it
-f, --tx-fee f Transaction fee, as a decimal BTC amount or in
satoshis per byte (an integer followed by 's').
If omitted, bitcoind's 'estimatefee' will be used
to calculate the fee.
-f, --tx-fee f Transaction fee, as a decimal BTC amount or as
satoshis per byte (an integer followed by s).
See FEE SPECIFICATION below. If omitted, fee will be
calculated using network fee estimation.
-H, --hidden-incog-input-params f,o Read hidden incognito data from file
'f' at offset 'o' (comma-separated)
-i, --in-fmt f Input is from wallet format 'f' (see FMT CODES below)
@ -41,7 +41,7 @@
-q, --quiet Suppress warnings; overwrite files without prompting
-v, --verbose Produce more verbose output
-V, --vsize-adj f Adjust transaction's estimated vsize by factor 'f'
-y, --yes Answer 'yes' to prompts, suppress non-essential output
-y, --yes Answer 'yes' to prompts, suppress non-essential output
-z, --show-hash-presets Show information on available hash presets
@ -49,11 +49,11 @@
are chosen from a list of the user's unpent outputs via an interactive menu.
If the transaction fee is not specified on the command line (see FEE
SPECIFICATION below), it will be calculated dynamically using bitcoind's
"estimatefee" function for the default (or user-specified) number of
confirmations. If "estimatefee" fails, the user will be prompted for a fee.
SPECIFICATION below), it will be calculated dynamically using network fee
estimation for the default (or user-specified) number of confirmations.
If network fee estimation fails, the user will be prompted for a fee.
Dynamic ("estimatefee") fees will be multiplied by the value of '--tx-fee-adj',
Network-estimated fees will be multiplied by the value of '--tx-fee-adj',
if specified.
Ages of transactions are approximate based on an average block discovery
@ -68,7 +68,7 @@
FEE SPECIFICATION: Transaction fees, both on the command line and at the
interactive prompt, may be specified as either absolute BTC amounts, using
a plain decimal number, or as satoshis per byte, using an integer followed by
the letter 's'.
's', for satoshi.
Transactions may contain both MMGen or non-MMGen input addresses.