Skip to content

Commit

Permalink
fixes after merge 4
Browse files Browse the repository at this point in the history
  • Loading branch information
axenteoctavian committed May 15, 2024
1 parent 041f166 commit 13514a2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions vm/systemSmartContracts/esdt.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ import (
"strings"
"sync"

"github.com/multiversx/mx-chain-go/common"
"github.com/multiversx/mx-chain-go/config"
"github.com/multiversx/mx-chain-go/vm"

"github.com/multiversx/mx-chain-core-go/core"
"github.com/multiversx/mx-chain-core-go/core/check"
"github.com/multiversx/mx-chain-core-go/hashing"
"github.com/multiversx/mx-chain-core-go/marshal"
"github.com/multiversx/mx-chain-go/common"
"github.com/multiversx/mx-chain-go/config"
"github.com/multiversx/mx-chain-go/vm"
logger "github.com/multiversx/mx-chain-logger-go"
vmcommon "github.com/multiversx/mx-chain-vm-common-go"
)
Expand Down Expand Up @@ -2464,7 +2465,7 @@ func (e *esdt) sendTokenTypeToSystemAccounts(caller []byte, tokenID []byte, toke

builtInFunc := core.ESDTSetTokenType
esdtTransferData := builtInFunc + "@" + hex.EncodeToString(tokenID) + "@" + hex.EncodeToString(token.TokenType)
e.eei.SendGlobalSettingToAll(e.esdtSCAddress, []byte(esdtTransferData))
_ = e.eei.SendGlobalSettingToAll(e.esdtSCAddress, []byte(esdtTransferData))

logEntry := &vmcommon.LogEntry{
Identifier: []byte(builtInFunc),
Expand Down

0 comments on commit 13514a2

Please sign in to comment.