From 704673123e771e08aa20ca2c3341f5aae1111bcc Mon Sep 17 00:00:00 2001 From: robertsasu Date: Thu, 22 Aug 2024 13:52:29 +0300 Subject: [PATCH] fixing after refactor --- vmhost/vmhooks/baseOps.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vmhost/vmhooks/baseOps.go b/vmhost/vmhooks/baseOps.go index eb4c16f68..87ae626c9 100644 --- a/vmhost/vmhooks/baseOps.go +++ b/vmhost/vmhooks/baseOps.go @@ -1166,7 +1166,7 @@ func TransferESDTNFTExecuteWithTypedArgs( SenderForExec: sender, } gasLimitForExec, executeErr := output.TransferESDT(transfersArgs, contractCallInput) - if err != nil { + if executeErr != nil { FailExecution(host, executeErr) return 1 }