mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-22 19:29:39 +00:00
commit
75d06d18c9
5 changed files with 8 additions and 8 deletions
|
@ -549,7 +549,7 @@ func unmarshalArrayOfConditionJSONs(arr []json.RawMessage, maxDepth int) ([]Witn
|
||||||
if l == 0 {
|
if l == 0 {
|
||||||
return nil, errors.New("empty array of conditions")
|
return nil, errors.New("empty array of conditions")
|
||||||
}
|
}
|
||||||
if l >= maxSubitems {
|
if l > maxSubitems {
|
||||||
return nil, errors.New("too many elements")
|
return nil, errors.New("too many elements")
|
||||||
}
|
}
|
||||||
res := make([]WitnessCondition, l)
|
res := make([]WitnessCondition, l)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
package transaction
|
package transaction
|
||||||
|
|
||||||
//go:generate stringer -type=WitnessScope -output=witness_scope_string.go
|
//go:generate stringer -type=WitnessScope -linecomment -output=witness_scope_string.go
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
@ -23,7 +23,7 @@ const (
|
||||||
// CustomGroups define custom pubkey for group members.
|
// CustomGroups define custom pubkey for group members.
|
||||||
CustomGroups WitnessScope = 0x20
|
CustomGroups WitnessScope = 0x20
|
||||||
// Rules is a set of conditions with boolean operators.
|
// Rules is a set of conditions with boolean operators.
|
||||||
Rules WitnessScope = 0x40
|
Rules WitnessScope = 0x40 // WitnessRules
|
||||||
// Global allows this witness in all contexts (default Neo2 behavior).
|
// Global allows this witness in all contexts (default Neo2 behavior).
|
||||||
// This cannot be combined with other flags.
|
// This cannot be combined with other flags.
|
||||||
Global WitnessScope = 0x80
|
Global WitnessScope = 0x80
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Code generated by "stringer -type=WitnessScope -output=witness_scope_string.go"; DO NOT EDIT.
|
// Code generated by "stringer -type=WitnessScope -linecomment -output=witness_scope_string.go"; DO NOT EDIT.
|
||||||
|
|
||||||
package transaction
|
package transaction
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ const (
|
||||||
_WitnessScope_name_0 = "NoneCalledByEntry"
|
_WitnessScope_name_0 = "NoneCalledByEntry"
|
||||||
_WitnessScope_name_1 = "CustomContracts"
|
_WitnessScope_name_1 = "CustomContracts"
|
||||||
_WitnessScope_name_2 = "CustomGroups"
|
_WitnessScope_name_2 = "CustomGroups"
|
||||||
_WitnessScope_name_3 = "Rules"
|
_WitnessScope_name_3 = "WitnessRules"
|
||||||
_WitnessScope_name_4 = "Global"
|
_WitnessScope_name_4 = "Global"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -62,7 +62,7 @@ var (
|
||||||
|
|
||||||
func (i CommandType) String() string {
|
func (i CommandType) String() string {
|
||||||
switch {
|
switch {
|
||||||
case i <= 1:
|
case 0 <= i && i <= 1:
|
||||||
return _CommandType_name_0[_CommandType_index_0[i]:_CommandType_index_0[i+1]]
|
return _CommandType_name_0[_CommandType_index_0[i]:_CommandType_index_0[i+1]]
|
||||||
case 16 <= i && i <= 17:
|
case 16 <= i && i <= 17:
|
||||||
i -= 16
|
i -= 16
|
||||||
|
|
|
@ -1675,7 +1675,7 @@ func (s *Server) getInvokeScriptParams(reqParams request.Params) (*transaction.T
|
||||||
if len(reqParams) > 1 {
|
if len(reqParams) > 1 {
|
||||||
signers, witnesses, err := reqParams[1].GetSignersWithWitnesses()
|
signers, witnesses, err := reqParams[1].GetSignersWithWitnesses()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, false, response.ErrInvalidParams
|
return nil, false, response.WrapErrorWithData(response.ErrInvalidParams, err)
|
||||||
}
|
}
|
||||||
tx.Signers = signers
|
tx.Signers = signers
|
||||||
tx.Scripts = witnesses
|
tx.Scripts = witnesses
|
||||||
|
@ -1684,7 +1684,7 @@ func (s *Server) getInvokeScriptParams(reqParams request.Params) (*transaction.T
|
||||||
if len(reqParams) > 2 {
|
if len(reqParams) > 2 {
|
||||||
verbose, err = reqParams[2].GetBoolean()
|
verbose, err = reqParams[2].GetBoolean()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, false, response.ErrInvalidParams
|
return nil, false, response.WrapErrorWithData(response.ErrInvalidParams, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if len(tx.Signers) == 0 {
|
if len(tx.Signers) == 0 {
|
||||||
|
|
Loading…
Reference in a new issue