mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2024-12-27 22:08:13 +00:00
10 lines
196 B
Go
10 lines
196 B
Go
package ethchain
|
|
|
|
import (
|
|
"math/big"
|
|
)
|
|
|
|
var BlockReward *big.Int = big.NewInt(1.5e+18)
|
|
var UncleReward *big.Int = big.NewInt(1.125e+18)
|
|
var UncleInclusionReward *big.Int = big.NewInt(1.875e+17)
|