From 86fd2cc23041e13d67132588c96fa76171c1c59c Mon Sep 17 00:00:00 2001 From: Kristaps Kaupe Date: Tue, 1 Dec 2020 11:40:51 +0200 Subject: [PATCH] Remove comment about old transaction dict format, not used anymore --- jmclient/jmclient/wallet.py | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/jmclient/jmclient/wallet.py b/jmclient/jmclient/wallet.py index 2752079..c64cce8 100644 --- a/jmclient/jmclient/wallet.py +++ b/jmclient/jmclient/wallet.py @@ -32,32 +32,6 @@ import jmbitcoin as btc from jmbase import JM_WALLET_NAME_PREFIX, bintohex -""" -transaction dict format: - { - 'version': int, - 'locktime': int, - 'ins': [ - { - 'outpoint': { - 'hash': bytes, - 'index': int - }, - 'script': bytes, - 'sequence': int, - 'txinwitness': [bytes] - } - ], - 'outs': [ - { - 'script': bytes, - 'value': int - } - ] - } -""" - - def _int_to_bytestr(i): return str(i).encode('ascii')