This commit is contained in:
aozhiwei 2024-07-21 02:15:54 +08:00
parent 38c4488e65
commit f347c7a907
2 changed files with 6 additions and 1 deletions

View File

@ -25,3 +25,8 @@ func IsAirDropNft(tokenId string) bool {
}
return tokenIdInt64 >= 6000000000000000 && tokenIdInt64 <= 7000000000000000
}
func CalcContributionScore(nfts []*NftStacking) int64 {
var score int64
return score
}

View File

@ -20,7 +20,7 @@ type accountStacking struct {
}
func (this* accountStacking) calcScore() int64 {
return 0
return jccommon.CalcContributionScore(this.nfts)
}
func (this* accountStacking) getNftJsonData() string {