mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 03:30:37 +00:00
199ede36a2
* prevent slice make and copy in Pushes * do not pad if the same length * after CR * linters * linters * linters
14 lines
216 B
Go
14 lines
216 B
Go
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)
|
|
)
|