forked from TrueCloudLab/neoneo-go
core: fix DutyFlag check in GetScriptHashesForVerifying()
It's a flag (used by Share and Invoice asset types), so it should be checked like a flag, the same way C# node does.
This commit is contained in:
parent
4ae18e8ffc
commit
832c56f97d
1 changed files with 1 additions and 1 deletions
|
@ -899,7 +899,7 @@ func (bc *Blockchain) GetScriptHashesForVerifying(t *transaction.Transaction) ([
|
||||||
if as == nil {
|
if as == nil {
|
||||||
return nil, errors.New("Invalid operation")
|
return nil, errors.New("Invalid operation")
|
||||||
}
|
}
|
||||||
if as.AssetType == transaction.DutyFlag {
|
if as.AssetType&transaction.DutyFlag != 0 {
|
||||||
for _, o := range outputs {
|
for _, o := range outputs {
|
||||||
h := o.ScriptHash
|
h := o.ScriptHash
|
||||||
if _, ok := hashes[h]; !ok {
|
if _, ok := hashes[h]; !ok {
|
||||||
|
|
Loading…
Reference in a new issue