Skip to content

Commit

Permalink
Merge pull request #309 from multiversx/merge-master-in-barnard
Browse files Browse the repository at this point in the history
Merge master in barnard
  • Loading branch information
miiu96 authored Dec 3, 2024
2 parents d5965b7 + 6128436 commit 6d04b89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get update && apt-get install -y
RUN useradd -m -u 1000 appuser
USER appuser

COPY --from=builder /multiversx/cmd/elasticindexer /multiversx
COPY --from=builder --chown=appuser /multiversx/cmd/elasticindexer /multiversx

EXPOSE 22111

Expand Down
7 changes: 5 additions & 2 deletions data/tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ import (
"github.com/multiversx/mx-chain-core-go/core"
)

const metaESDT = "MetaESDT"
const (
metaESDT = "MetaESDT"
dynamicMetaESDT = "DynamicMetaESDT"
)

// NFTDataUpdate will contain the update information for an NFT or SFT
type NFTDataUpdate struct {
Expand Down Expand Up @@ -129,7 +132,7 @@ func (ti *tokensInfo) GetAll() []*TokenInfo {
func (ti *tokensInfo) GetAllWithoutMetaESDT() []*TokenInfo {
tokens := make([]*TokenInfo, 0)
for _, tokenData := range ti.tokensInfo {
if tokenData.Type == metaESDT {
if tokenData.Type == metaESDT || tokenData.Type == dynamicMetaESDT {
continue
}

Expand Down

0 comments on commit 6d04b89

Please sign in to comment.