Merge pull request #3557 from nspcc-dev/fix-lint

*: fix linter issues
This commit is contained in:
Roman Khimov 2024-08-14 15:02:20 +03:00 committed by GitHub
commit 7766168c19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 36 additions and 36 deletions

View file

@ -32,9 +32,9 @@ func Fill(buf []byte) {
r.Read(buf) r.Read(buf)
} }
// Int returns a random integer in [min,max). // Int returns a random integer in [minI,maxI).
func Int(min, max int) int { func Int(minI, maxI int) int {
return min + rand.Intn(max-min) return minI + rand.Intn(maxI-minI)
} }
// Uint256 returns a random Uint256. // Uint256 returns a random Uint256.

View file

@ -196,7 +196,7 @@ type StateRoot interface {
CurrentLocalHeight() uint32 CurrentLocalHeight() uint32
CurrentLocalStateRoot() util.Uint256 CurrentLocalStateRoot() util.Uint256
CurrentValidatedHeight() uint32 CurrentValidatedHeight() uint32
FindStates(root util.Uint256, prefix, start []byte, max int) ([]storage.KeyValue, error) FindStates(root util.Uint256, prefix, start []byte, maxNum int) ([]storage.KeyValue, error)
SeekStates(root util.Uint256, prefix []byte, f func(k, v []byte) bool) SeekStates(root util.Uint256, prefix []byte, f func(k, v []byte) bool)
GetState(root util.Uint256, key []byte) ([]byte, error) GetState(root util.Uint256, key []byte) ([]byte, error)
GetStateProof(root util.Uint256, key []byte) ([][]byte, error) GetStateProof(root util.Uint256, key []byte) ([][]byte, error)

View file

@ -36,25 +36,25 @@ func IsIterator(item stackitem.Item) bool {
return ok return ok
} }
// ValuesTruncated returns an array of up to `max` iterator values. The second // ValuesTruncated returns an array of up to `maxNum` iterator values. The second
// return parameter denotes whether iterator is truncated, i.e. has more values. // return parameter denotes whether iterator is truncated, i.e. has more values.
// The provided iterator CAN NOT be reused in the subsequent calls to Values and // The provided iterator CAN NOT be reused in the subsequent calls to Values and
// to ValuesTruncated. // to ValuesTruncated.
func ValuesTruncated(item stackitem.Item, max int) ([]stackitem.Item, bool) { func ValuesTruncated(item stackitem.Item, maxNum int) ([]stackitem.Item, bool) {
result := Values(item, max) result := Values(item, maxNum)
arr := item.Value().(iterator) arr := item.Value().(iterator)
return result, arr.Next() return result, arr.Next()
} }
// Values returns an array of up to `max` iterator values. The provided // Values returns an array of up to `maxNum` iterator values. The provided
// iterator can safely be reused to retrieve the rest of its values in the // iterator can safely be reused to retrieve the rest of its values in the
// subsequent calls to Values and to ValuesTruncated. // subsequent calls to Values and to ValuesTruncated.
func Values(item stackitem.Item, max int) []stackitem.Item { func Values(item stackitem.Item, maxNum int) []stackitem.Item {
var result []stackitem.Item var result []stackitem.Item
arr := item.Value().(iterator) arr := item.Value().(iterator)
for max > 0 && arr.Next() { for maxNum > 0 && arr.Next() {
result = append(result, arr.Value()) result = append(result, arr.Value())
max-- maxNum--
} }
return result return result
} }

View file

@ -572,8 +572,8 @@ func collapse(depth int, node Node) Node {
// Find returns a list of storage key-value pairs whose key is prefixed by the specified // Find returns a list of storage key-value pairs whose key is prefixed by the specified
// prefix starting from the specified `prefix`+`from` path (not including the item at // prefix starting from the specified `prefix`+`from` path (not including the item at
// the specified `prefix`+`from` path if so). The `max` number of elements is returned at max. // the specified `prefix`+`from` path if so). The `maxNum` number of elements is returned at max.
func (t *Trie) Find(prefix, from []byte, max int) ([]storage.KeyValue, error) { func (t *Trie) Find(prefix, from []byte, maxNum int) ([]storage.KeyValue, error) {
if len(prefix) > MaxKeyLength { if len(prefix) > MaxKeyLength {
return nil, errors.New("invalid prefix length") return nil, errors.New("invalid prefix length")
} }
@ -622,7 +622,7 @@ func (t *Trie) Find(prefix, from []byte, max int) ([]storage.KeyValue, error) {
count++ count++
} }
} }
return count >= max return count >= maxNum
} }
_, err = b.traverse(start, path, fromP, process, false, false) _, err = b.traverse(start, path, fromP, process, false, false)
if err != nil && !errors.Is(err, errStop) { if err != nil && !errors.Is(err, errStop) {

View file

@ -260,7 +260,7 @@ func GetContractScriptHash(d *dao.Simple, id int32) (util.Uint160, error) {
return util.Uint160DecodeBytesBE(si) return util.Uint160DecodeBytesBE(si)
} }
func getLimitedSlice(arg stackitem.Item, max int) ([]byte, error) { func getLimitedSlice(arg stackitem.Item, maxLen int) ([]byte, error) {
_, isNull := arg.(stackitem.Null) _, isNull := arg.(stackitem.Null)
if isNull { if isNull {
return nil, nil return nil, nil
@ -272,8 +272,8 @@ func getLimitedSlice(arg stackitem.Item, max int) ([]byte, error) {
l := len(b) l := len(b)
if l == 0 { if l == 0 {
return nil, errors.New("empty") return nil, errors.New("empty")
} else if l > max { } else if l > maxLen {
return nil, fmt.Errorf("len is %d (max %d)", l, max) return nil, fmt.Errorf("len is %d (max %d)", l, maxLen)
} }
return b, nil return b, nil

View file

@ -1015,7 +1015,7 @@ func (n *NEO) ModifyAccountVotes(acc *state.NEOBalance, d *dao.Simple, value *bi
return nil return nil
} }
func (n *NEO) getCandidates(d *dao.Simple, sortByKey bool, max int) ([]keyWithVotes, error) { func (n *NEO) getCandidates(d *dao.Simple, sortByKey bool, maxNum int) ([]keyWithVotes, error) {
arr := make([]keyWithVotes, 0) arr := make([]keyWithVotes, 0)
buf := io.NewBufBinWriter() buf := io.NewBufBinWriter()
d.Seek(n.ID, storage.SeekRange{Prefix: []byte{prefixCandidate}}, func(k, v []byte) bool { d.Seek(n.ID, storage.SeekRange{Prefix: []byte{prefixCandidate}}, func(k, v []byte) bool {
@ -1025,7 +1025,7 @@ func (n *NEO) getCandidates(d *dao.Simple, sortByKey bool, max int) ([]keyWithVo
arr = append(arr, keyWithVotes{Key: string(k), Votes: &c.Votes}) arr = append(arr, keyWithVotes{Key: string(k), Votes: &c.Votes})
} }
buf.Reset() buf.Reset()
return !sortByKey || max > 0 && len(arr) < max return !sortByKey || maxNum > 0 && len(arr) < maxNum
}) })
if !sortByKey { if !sortByKey {

View file

@ -50,9 +50,9 @@ func testGetSet(t *testing.T, c *neotest.ContractInvoker, name string, defaultVa
if maxValue != 0 { if maxValue != 0 {
t.Run("set, too large value", func(t *testing.T) { t.Run("set, too large value", func(t *testing.T) {
// use big.Int because max can be `math.MaxInt64` // use big.Int because max can be `math.MaxInt64`
max := big.NewInt(maxValue) m := big.NewInt(maxValue)
max.Add(max, big.NewInt(1)) m.Add(m, big.NewInt(1))
committeeInvoker.InvokeFail(t, "", setName, max) committeeInvoker.InvokeFail(t, "", setName, m)
}) })
} }

View file

@ -81,16 +81,16 @@ func (s *Module) GetState(root util.Uint256, key []byte) ([]byte, error) {
} }
// FindStates returns a set of key-value pairs with keys matching the prefix starting // FindStates returns a set of key-value pairs with keys matching the prefix starting
// from the `prefix`+`start` path from MPT with the specified root. `max` is // from the `prefix`+`start` path from MPT with the specified root. `maxNum` is
// the maximum number of elements to be returned. If nil `start` is specified, then the // the maximum number of elements to be returned. If nil `start` is specified, then the
// item with the key equal to the prefix is included into the result; if empty `start` is specified, // item with the key equal to the prefix is included into the result; if empty `start` is specified,
// then the item with the key equal to the prefix is not included into the result. // then the item with the key equal to the prefix is not included into the result.
// In case there are no results (prefix is unused, start is after the last available // In case there are no results (prefix is unused, start is after the last available
// element) mpt.ErrNotFound is returned. // element) mpt.ErrNotFound is returned.
func (s *Module) FindStates(root util.Uint256, prefix, start []byte, max int) ([]storage.KeyValue, error) { func (s *Module) FindStates(root util.Uint256, prefix, start []byte, maxNum int) ([]storage.KeyValue, error) {
// Allow accessing old values, it's RO thing. // Allow accessing old values, it's RO thing.
tr := mpt.NewTrie(mpt.NewHashNode(root), s.mode&^mpt.ModeGCFlag, storage.NewMemCachedStore(s.Store)) tr := mpt.NewTrie(mpt.NewHashNode(root), s.mode&^mpt.ModeGCFlag, storage.NewMemCachedStore(s.Store))
return tr.Find(prefix, start, max) return tr.Find(prefix, start, maxNum)
} }
// SeekStates traverses over contract storage with the state based on the // SeekStates traverses over contract storage with the state based on the

View file

@ -83,15 +83,15 @@ func Int64(r *result.Invoke, err error) (int64, error) {
// LimitedInt64 is similar to Int64 except it allows to set minimum and maximum // LimitedInt64 is similar to Int64 except it allows to set minimum and maximum
// limits to be checked, so if it doesn't return an error the value is more than // limits to be checked, so if it doesn't return an error the value is more than
// min and less than max. // min and less than max.
func LimitedInt64(r *result.Invoke, err error, min int64, max int64) (int64, error) { func LimitedInt64(r *result.Invoke, err error, minI int64, maxI int64) (int64, error) {
i, err := Int64(r, err) i, err := Int64(r, err)
if err != nil { if err != nil {
return 0, err return 0, err
} }
if i < min { if i < minI {
return 0, errors.New("too small value") return 0, errors.New("too small value")
} }
if i > max { if i > maxI {
return 0, errors.New("too big value") return 0, errors.New("too big value")
} }
return i, nil return i, nil

View file

@ -1478,11 +1478,11 @@ func TestClient_IteratorSessions(t *testing.T) {
t.Run("traverse with max constraint", func(t *testing.T) { t.Run("traverse with max constraint", func(t *testing.T) {
sID, iID := prepareSession(t) sID, iID := prepareSession(t)
check := func(t *testing.T, start, end int) { check := func(t *testing.T, start, end int) {
max := end - start maxNum := end - start
set, err := c.TraverseIterator(sID, iID, max) set, err := c.TraverseIterator(sID, iID, maxNum)
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, max, len(set)) require.Equal(t, maxNum, len(set))
for i := 0; i < max; i++ { for i := 0; i < maxNum; i++ {
// According to the Storage contract code. // According to the Storage contract code.
require.Equal(t, expected[start+i], set[i].Value().([]byte), start+i) require.Equal(t, expected[start+i], set[i].Value().([]byte), start+i)
} }
@ -1672,11 +1672,11 @@ func TestClient_Iterator_SessionConfigVariations(t *testing.T) {
require.True(t, ok) require.True(t, ok)
require.NotEmpty(t, iterator.ID) require.NotEmpty(t, iterator.ID)
require.Empty(t, iterator.Values) require.Empty(t, iterator.Values)
max := 84 maxNum := 84
actual, err := c.TraverseIterator(res.Session, *iterator.ID, max) actual, err := c.TraverseIterator(res.Session, *iterator.ID, maxNum)
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, max, len(actual)) require.Equal(t, maxNum, len(actual))
for i := 0; i < max; i++ { for i := 0; i < maxNum; i++ {
// According to the Storage contract code. // According to the Storage contract code.
require.Equal(t, expected[i], actual[i].Value().([]byte), i) require.Equal(t, expected[i], actual[i].Value().([]byte), i)
} }