File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
src/hiero_sdk_python/transaction Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def __init__(
5050 self ._transaction_id : Optional [TransactionId ] = transaction_id
5151 self .status : Optional [response_code_pb2 .ResponseCodeEnum ] = receipt_proto .status
5252 self ._receipt_proto : transaction_receipt_pb2 .TransactionReceipt = receipt_proto
53- self ._children : list ["TransactionReceitp " ] = children or []
53+ self ._children : list ["TransactionReceipt " ] = children or []
5454
5555 @property
5656 def token_id (self ) -> Optional [TokenId ]:
Original file line number Diff line number Diff line change 1919from hiero_sdk_python .response_code import ResponseCode
2020from hiero_sdk_python .transaction .transfer_transaction import TransferTransaction
2121
22- from tests .integration .utils_for_test import env
22+ from tests .integration .utils import env
2323
2424
2525def _extract_tx_id (tx , receipt ):
@@ -55,8 +55,8 @@ def _submit_simple_transfer(env):
5555
5656 tx = (
5757 TransferTransaction ()
58- .add_hbar_transfer (env .operator_id , Hbar (- 0.01 ))
59- .add_hbar_transfer (receiver .id , Hbar (0.01 ))
58+ .add_hbar_transfer (env .operator_id , Hbar (- 0.01 ). to_tinybars () )
59+ .add_hbar_transfer (receiver .id , Hbar (0.01 ). to_tinybars () )
6060 )
6161
6262 receipt = tx .execute (env .client )
@@ -179,7 +179,6 @@ def test_get_receipt_query_children_with_contract_execute_e2e(env):
179179
180180 if len (queried .children ) > 0 :
181181 for child in queried .children :
182- __import__ ('pdb' ).set_trace ()
183182 assert child .status is not None
184183
185184 assert isinstance (queried .children , list )
You can’t perform that action at this time.
0 commit comments