From 7afff0976d1204c4f369a06f25a938b8d40e599f Mon Sep 17 00:00:00 2001 From: sallymoc Date: Wed, 15 Jul 2026 11:51:57 +0200 Subject: [PATCH] docs: fix duplicated hook in assets-and-shares interaction flow The acquireShares interaction flow listed MYTEST's PRE_RELEASE_SHARES twice; the final post-transfer step should be POST_RELEASE_SHARES. Verified against core (qpi.acquireShares invokes the source contract's PRE_RELEASE_SHARES and POST_RELEASE_SHARES). --- .../smart-contracts/sc-by-examples/assets-and-shares.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developers/smart-contracts/sc-by-examples/assets-and-shares.md b/docs/developers/smart-contracts/sc-by-examples/assets-and-shares.md index 2d722e6..18e2d76 100644 --- a/docs/developers/smart-contracts/sc-by-examples/assets-and-shares.md +++ b/docs/developers/smart-contracts/sc-by-examples/assets-and-shares.md @@ -135,7 +135,7 @@ struct acquireShares_output { - Both contracts update their states -- MYTEST's `PRE_RELEASE_SHARES` is invoked +- MYTEST's `POST_RELEASE_SHARES` is invoked ## NFTs and Unique Assets