diff --git a/mmgen/data/version b/mmgen/data/version index a31e19a5..5c3dc5a1 100644 --- a/mmgen/data/version +++ b/mmgen/data/version @@ -1 +1 @@ -16.1.dev1 +16.1.dev2 diff --git a/mmgen/main_txbump.py b/mmgen/main_txbump.py index 000a73d7..be20fa59 100755 --- a/mmgen/main_txbump.py +++ b/mmgen/main_txbump.py @@ -181,7 +181,7 @@ async def main(): if not silent: msg(green('ORIGINAL TRANSACTION')) - msg(orig_tx.info.format(terse=True)) + msg(orig_tx.info.format(terse=True, sort='raw')) from .tw.ctl import TwCtl tx = BumpTX( @@ -199,7 +199,7 @@ async def main(): if not silent: msg(green('\nREPLACEMENT TRANSACTION:')) - msg_r(tx.info.format(terse=True)) + msg_r(tx.info.format(terse=True, sort='raw')) if sign_and_send: tx2 = UnsignedTX(cfg=cfg, data=tx.__dict__) diff --git a/test/cmdtest_d/main.py b/test/cmdtest_d/main.py index 9fed9db2..91d8032b 100755 --- a/test/cmdtest_d/main.py +++ b/test/cmdtest_d/main.py @@ -782,7 +782,7 @@ class CmdTestMain(CmdTestBase, CmdTestShared): t = self.spawn('mmgen-txbump', args) if seed_args: t.do_decrypt_ka_data(pw=self.cfgs['14']['kapasswd']) - t.expect('deduct the fee from (Hit ENTER for the change output): ', '1\n') + t.expect('deduct the fee from (Hit ENTER for the change output): ', '2\n') # Fee must be > tx_fee + network relay fee (currently 0.00001) t.expect('OK? (Y/n): ', '\n') t.expect('Enter transaction fee: ', self.txbump_fee+'\n')