From 5049f8353b79e3a5c6ef669e17ae3f557d77b990 Mon Sep 17 00:00:00 2001 From: Aumetra Weisman Date: Thu, 23 May 2024 17:01:33 +0200 Subject: [PATCH] Add comment about the ID --- src/pages/core/entrypoints/reply.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/core/entrypoints/reply.mdx b/src/pages/core/entrypoints/reply.mdx index d1a7ba6f..a659ffbc 100644 --- a/src/pages/core/entrypoints/reply.mdx +++ b/src/pages/core/entrypoints/reply.mdx @@ -28,7 +28,7 @@ and set it to one of the following values: ```rust filename="contract.rs" template="core" const CONTRACT_ADDR: &str = "other_contract"; -const SUBMSG_ID: u64 = 1; +const SUBMSG_ID: u64 = 1; // This is a unique identifier so we can associate a reply with a specific submessage. It can be any numeric value. #[entry_point] pub fn reply(deps: DepsMut, env: Env, msg: cosmwasm_std::Reply) -> StdResult {