Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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)
|