tx-v2-to-v3.py 914 B

123456789101112131415161718192021222324252627282930
  1. #!/usr/bin/env python3
  2. # Convert MMGen 'v2' transaction file (amounts as BTCAmt())
  3. # to MMGen 'v3' (amounts as strings)
  4. # v3 tx files were introduced with MMGen version 0.9.7
  5. import sys,os
  6. repo_root = os.path.split(os.path.abspath(os.path.dirname(sys.argv[0])))[0]
  7. sys.path = [repo_root] + sys.path
  8. from mmgen.common import *
  9. opts_data = lambda: {
  10. 'desc': "Convert MMGen transaction file from v2 format to v3 format",
  11. 'usage': "<tx file>",
  12. 'options': """
  13. -h, --help Print this help message
  14. -d, --outdir=d Output files to directory 'd' instead of working dir
  15. -q, --quiet Write (and overwrite) files without prompting
  16. -S, --stdout Write data to STDOUT instead of file
  17. """
  18. }
  19. cmd_args = opts.init(opts_data)
  20. from mmgen.tx import *
  21. if len(cmd_args) != 1: opts.usage()
  22. tx = MMGenTX(cmd_args[0],silent_open=True)
  23. tx.write_to_file(ask_tty=False,ask_overwrite=not opt.quiet,ask_write=not opt.quiet)