From 1bcb89afbbf26d997c6bf3839e4098cc5f67c840 Mon Sep 17 00:00:00 2001 From: Robert Sasu Date: Fri, 5 Nov 2021 13:47:01 +0200 Subject: [PATCH] exec on destionation by caller --- data/vm/callType.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/data/vm/callType.go b/data/vm/callType.go index a46d1b3f7..a38c2a0a8 100644 --- a/data/vm/callType.go +++ b/data/vm/callType.go @@ -18,4 +18,8 @@ const ( // ESDTTransferAndExecute means that there is a smart contract execution after the ESDT transfer // this is needed in order to skip the check whether a contract is payable or not ESDTTransferAndExecute + + // ExecOnDestByCaller means that the call is an invocation of a built in function / smart contract from + // another smart contract but the caller is from the previous caller + ExecOnDestByCaller )