Description
Align the Python SDK with the other SDKs by using set_node_account_ids([]) as the primary way to configure node account IDs for Transaction.
Current Behavior
The Python SDK supports setting a node account ID using:
node_account_id=...
set_node_account_id(...)
Proposed Change
Use set_node_account_ids([...]) as the standard API for configuring node account IDs to match the behavior and API of the other SDKs and Deprecate node_account_id and set_node_account_id(...).
Description
Align the Python SDK with the other SDKs by using
set_node_account_ids([])as the primary way to configure node account IDs for Transaction.Current Behavior
The Python SDK supports setting a node account ID using:
node_account_id=...set_node_account_id(...)Proposed Change
Use
set_node_account_ids([...])as the standard API for configuring node account IDs to match the behavior and API of the other SDKs and Deprecatenode_account_idandset_node_account_id(...).