From 9ef8751de4f42eae0dcbaf95e7d10817f7270523 Mon Sep 17 00:00:00 2001 From: Xi Zhang Date: Tue, 14 Nov 2023 11:09:01 -0600 Subject: [PATCH] Update docs/dapp/sapphire/security.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Matevž Jekovec --- docs/dapp/sapphire/security.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/dapp/sapphire/security.md b/docs/dapp/sapphire/security.md index 5d3329d043..fec875382a 100644 --- a/docs/dapp/sapphire/security.md +++ b/docs/dapp/sapphire/security.md @@ -59,6 +59,7 @@ function transferFrom(address who, address to, uint amount) { require( balances[who] >= amount ); require( allowances[who][msg.sender] >= amount ); + // ... } ```