github.com/Rookout/GoSDK@v0.1.48/pkg/services/assembler/internal/abi/map.go (about)

     1  // Copyright 2023 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE.assembler file.
     4  
     5  package abi
     6  
     7  
     8  
     9  const (
    10  	MapBucketCountBits = 3 
    11  	MapBucketCount     = 1 << MapBucketCountBits
    12  	MapMaxKeyBytes     = 128 
    13  	MapMaxElemBytes    = 128 
    14  )