def main() -> Transaction:
    return Ledger.get_transaction_from_block('height', 'tx_index')
def main(height: int, tx_index: int) -> Transaction:
    return Ledger.get_transaction_from_block(height, tx_index)