From eca688f2bedde6881c43c4ea2d07b5f218433fd5 Mon Sep 17 00:00:00 2001 From: crosschainer <68580992+crosschainer@users.noreply.github.com> Date: Thu, 25 Apr 2024 11:21:48 +0200 Subject: [PATCH] Update context.md --- docs/concepts/context.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/context.md b/docs/concepts/context.md index 68013b0..e8b284d 100644 --- a/docs/concepts/context.md +++ b/docs/concepts/context.md @@ -143,7 +143,7 @@ contract.py (Smart Contract) ```python @export def function(): - return ctx.entry # Output when someone used other_contract: ("contract","function") + return ctx.entry # Output when someone used other_contract: ("other_contract","call_contract") ``` other_contract.py (Smart Contract)