http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/src/0fef35f567613e5f82ca1703d695be15040c24e5/mmgen/tw/common.py
If not, see <http://www.gnu.org/licenses/>. """ tw: Tracking wallet dependency classes and helper functions """ import time from ..objmethods import Hilite,InitErrors,MMGenObject from ..obj import TwComment from ..addr import MMGenID # mixin class for TwUnspentOutputs,TwAddrList: class TwCommon: age_fmts = ('confs','block','days','date','date_time') date_formatter = { 'days': lambda rpc,secs: (rpc.cur_date - secs) // 86400, 'date': lambda rpc,secs:...