forked from TrueCloudLab/neoneo-go
rpcsrv: use more robust NEP-11 divisibility check
It's more heavyweight at the same time, but should be OK for the purpose. Inspired by https://github.com/neo-project/neo-modules/issues/754#issuecomment-1345176986
This commit is contained in:
parent
628f04769b
commit
c1afaf8ea8
1 changed files with 2 additions and 1 deletions
|
@ -48,6 +48,7 @@ import (
|
|||
"github.com/nspcc-dev/neo-go/pkg/smartcontract"
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/callflag"
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest"
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/manifest/standard"
|
||||
"github.com/nspcc-dev/neo-go/pkg/smartcontract/trigger"
|
||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||
"github.com/nspcc-dev/neo-go/pkg/vm"
|
||||
|
@ -931,7 +932,7 @@ contract_loop:
|
|||
if cs == nil {
|
||||
continue
|
||||
}
|
||||
isDivisible := (cs.Manifest.ABI.GetMethod("balanceOf", 2) != nil)
|
||||
isDivisible := (standard.ComplyABI(&cs.Manifest, standard.Nep11Divisible) == nil)
|
||||
lub, ok := lastUpdated[cs.ID]
|
||||
if !ok {
|
||||
cfg := s.chain.GetConfig()
|
||||
|
|
Loading…
Reference in a new issue