tx-v2-to-v3.py 922 B

1234567891011121314151617181920212223242526272829303132
  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 = {
  10. 'text': {
  11. 'desc': "Convert MMGen transaction file from v2 format to v3 format",
  12. 'usage': "<tx file>",
  13. 'options': """
  14. -h, --help Print this help message
  15. -d, --outdir=d Output files to directory 'd' instead of working dir
  16. -q, --quiet Write (and overwrite) files without prompting
  17. -S, --stdout Write data to STDOUT instead of file
  18. """
  19. }
  20. }
  21. cmd_args = opts.init(opts_data)
  22. from mmgen.tx import *
  23. if len(cmd_args) != 1: opts.usage()
  24. tx = MMGenTX(cmd_args[0],quiet_open=True)
  25. tx.write_to_file(ask_tty=False,ask_overwrite=not opt.quiet,ask_write=not opt.quiet)