January 2019
Beginner to intermediate
372 pages
11h 17m
English
Transaction output has a structure that only accepts the recipient's address and the transaction amount. The address is the public key counterpart of the Elliptic-curve cryptography (ECC) key pair:
class TxOut:
def __init__(self, address, amount):
self.address = address
self.amount = amount