Version 0.11.0b (Bitcoin Core v0.19.0 compatibility subrelease)

This commit is contained in:
The MMGen Project 2019-10-10 13:23:55 +00:00
commit 647ba72ab4
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
Notes: The MMGen Project 2019-10-23 11:07:58 +00:00
The 'size' field was removed from mempool entry in Core v0.19.0, necessitating
this trivial fix.
2 changed files with 5 additions and 5 deletions

View file

@ -37,8 +37,8 @@ class g(object):
# Constants:
version = '0.11.0a'
release_date = 'May 2019'
version = '0.11.0b'
release_date = 'October 2019'
proj_name = 'MMGen'
proj_url = 'https://github.com/mmgen/mmgen'

View file

@ -446,7 +446,7 @@ Selected non-{pnm} inputs: {{}}""".strip().format(pnm=g.proj_name,pnl=g.proj_nam
est_vsize = self.estimate_size()
d = g.rpch.decoderawtransaction(self.hex)
vsize = d['vsize'] if 'vsize' in d else d['size']
vmsg('\nSize: {}, Vsize: {} (true) {} (estimated)'.format(d['size'],vsize,est_vsize))
vmsg('\nVsize: {} (true) {} (estimated)'.format(vsize,est_vsize))
m1 = 'Estimated transaction vsize is {:1.2f} times the true vsize\n'
m2 = 'Your transaction fee estimates will be inaccurate\n'
m3 = 'Please re-create and re-sign the transaction using the option --vsize-adj={:1.2f}'
@ -877,7 +877,7 @@ Selected non-{pnm} inputs: {{}}""".strip().format(pnm=g.proj_name,pnl=g.proj_nam
return any(o.mmid and o.mmid.mmtype in ('S','B') for o in self.outputs)
def is_in_mempool(self):
return 'size' in g.rpch.getmempoolentry(self.coin_txid,on_fail='silent')
return 'height' in g.rpch.getmempoolentry(self.coin_txid,on_fail='silent')
def is_in_wallet(self):
ret = g.rpch.gettransaction(self.coin_txid,on_fail='silent')
@ -925,7 +925,7 @@ Selected non-{pnm} inputs: {{}}""".strip().format(pnm=g.proj_name,pnl=g.proj_nam
if not opt.quiet:
msg('Replacing transactions:')
rt = ret[1]['walletconflicts']
for t,s in [(tx,'size' in g.rpch.getmempoolentry(tx,on_fail='silent')) for tx in rt]:
for t,s in [(tx,'height' in g.rpch.getmempoolentry(tx,on_fail='silent')) for tx in rt]:
msg(' {}{}'.format(t,('',' in mempool')[s]))
die(0,'')