From a025a98722dcb58d6de3d455d6e16bf949300c62 Mon Sep 17 00:00:00 2001 From: Richard Watts Date: Thu, 12 Sep 2024 11:52:21 +0100 Subject: [PATCH] (fix) Get the function signature of Burn() right. --- zrcs/zrc-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zrcs/zrc-2.md b/zrcs/zrc-2.md index 165f8237a..b5a5461c1 100644 --- a/zrcs/zrc-2.md +++ b/zrcs/zrc-2.md @@ -128,7 +128,7 @@ transition Mint(recipient: ByStr20, amount: Uint128) (* @dev: Burn existing tokens. Only the owner of the tokens can burn. *) (* @param burn_account: Address of the token_owner whose balance is to decrease. *) (* @param amount: Number of tokens to be burned. *) -transition Burn(burn_account: ByStr20, amount: Uint128) +transition Burn(amount: Uint128) ``` **Arguments:**