From af41025f5abc844ef8a3b73a290ae750ae95372a Mon Sep 17 00:00:00 2001 From: BOBO Date: Tue, 28 May 2019 10:32:21 +0900 Subject: [PATCH] Update references/python-api-reference.md - Updates explanation on README of Python SDK Co-Authored-By: sojinkim-icon <41354736+sojinkim-icon@users.noreply.github.com> --- references/python-api-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/references/python-api-reference.md b/references/python-api-reference.md index 4ca7776..151186c 100644 --- a/references/python-api-reference.md +++ b/references/python-api-reference.md @@ -917,7 +917,7 @@ tx_hash = icon_service.send_transaction(signed_transaction) It is important to set a proper `step_limit` value in your transaction to make the submitted transaction executed successfully. -`estimate_step` API provides a way to **estimate** the Step usage of a given transaction. Using the method, you can get an estimated Step usage before sending your transaction then make a `SignedTransaction` with the `step_limit` based on the estimation. +`estimate_step` API provides a way to **estimate** the Step usage of a given transaction. Using the method, you can get an estimated Step usage before sending your transaction, then based on the estimation, decide the optimal `step_limit` in your `SignedTransaction`. ### Examples