http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/src/f06e48ec2759a63368f993af8ba4a10068b82765/mmgen/proto/eth/tx/base.py
r}: incorrect type for fee estimate (not an integer)' return ETHAmt(rel_fee * self.tx_gas.toWei(),'wei') def is_replaceable(self): return True async def get_receipt(self,txid,silent=False): rx = await self.rpc.call('eth_getTransactionReceipt','0x'+txid) # -> null if pending if not rx: return None tx = await self.rpc.call('eth_getTransactionByHash','0x'+txid) return namedtuple('exec_status',['status','gas_sent','gas_used','gas_price','contract_addr','tx','rx'])( status =...