Closed xiangxn closed 4 years ago
No "transaction_ids" in the block?
See https://steemit.com/bitshares/@xeroc/python-bitshares-how-to-derive-transaction-ids . See also #35.
TL;DR
from bitshares.block import Block from bitsharesbase.signedtransactions import Signed_Transaction block = Block(23743383) tx = Signed_Transaction(**block["transactions"][2]) print(tx.id)
No "transaction_ids" in the block?