mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 09:37:38 +00:00
231e468e19
git-subtree-dir: erigon-lib git-subtree-mainline:3c8cbda809
git-subtree-split:93d9c9d9fe
30 lines
813 B
Go
30 lines
813 B
Go
/*
|
|
Copyright 2021 Erigon contributors
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package common
|
|
|
|
import "math/big"
|
|
|
|
var (
|
|
Big0 = big.NewInt(0)
|
|
Big1 = big.NewInt(1)
|
|
Big2 = big.NewInt(2)
|
|
Big3 = big.NewInt(3)
|
|
Big32 = big.NewInt(32)
|
|
Big256 = big.NewInt(256)
|
|
Big257 = big.NewInt(257)
|
|
)
|