From 27904328c61570da721a173a3e761fc3bc5f475c Mon Sep 17 00:00:00 2001 From: sojinkim-icon <41354736+sojinkim-icon@users.noreply.github.com> Date: Thu, 30 May 2019 12:06:19 +0900 Subject: [PATCH] Update python-sdk.md --- references/python-sdk.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/references/python-sdk.md b/references/python-sdk.md index 0dfb5b4..6ecd9c4 100644 --- a/references/python-sdk.md +++ b/references/python-sdk.md @@ -198,7 +198,8 @@ Finally, you can send a transaction with the signed transaction object as follow tx_hash = icon_service.send_transaction(signed_transaction) ``` -#### Estimate step +### Step Estimation +@ Available since: iconsdk 1.0.9 It is important to set a proper `step_limit` value in your transaction to make the submitted transaction executed successfully. @@ -229,7 +230,6 @@ tx_hash = icon_service.send_transaction(signed_transaction) Note that the estimation can be smaller or larger than the actual amount of step to be used by the transaction, so it is recommended to add some margin to the estimation when you set the `step_limit` of the `SignedTransaction`. -#### ## Code Examples