123456789101112131415161718192021222324252627282930313233343536 |
- #!/usr/bin/env python3
- #
- # mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
- # Copyright (C)2013-2024 The MMGen Project <mmgen@tuta.io>
- # Licensed under the GNU General Public License, Version 3:
- # https://www.gnu.org/licenses
- # Public project repositories:
- # https://github.com/mmgen/mmgen-wallet
- # https://gitlab.com/mmgen/mmgen-wallet
- """
- tx.unsigned: unsigned transaction class
- """
- from .completed import Completed
- from ..util import remove_dups
- class Unsigned(Completed):
- desc = 'unsigned transaction'
- ext = 'rawtx'
- automount = False
- def delete_attrs(self,desc,attr):
- for e in getattr(self,desc):
- if hasattr(e,attr):
- delattr(e,attr)
- def get_sids(self,desc):
- return remove_dups(
- (e.mmid.sid for e in getattr(self,desc) if e.mmid),
- quiet = True )
- class AutomountUnsigned(Unsigned):
- desc = 'unsigned automount transaction'
- ext = 'arawtx'
- automount = True
|