mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 21:31:37 +00:00
Merge pull request #339 from gzliudan/new-gas-price-number
set new gas price number for testnet and mainnet
This commit is contained in:
commit
95f19e9684
3 changed files with 6 additions and 5 deletions
|
|
@ -77,7 +77,7 @@ var BaseTopUp = big.NewInt(100)
|
|||
var BaseRecall = big.NewInt(100)
|
||||
var TIPTRC21Fee = big.NewInt(38383838)
|
||||
var TIPTRC21FeeTestnet = big.NewInt(38383838)
|
||||
var BlockNumberGas50x = big.NewInt(TIPTRC21Fee.Int64() + 30000000)
|
||||
var BlockNumberGas50x = big.NewInt(TIPTRC21Fee.Int64() + 40000000)
|
||||
var LimitTimeFinality = uint64(30) // limit in 30 block
|
||||
|
||||
var IgnoreSignerCheckBlockArray = map[uint64]bool{
|
||||
|
|
|
|||
|
|
@ -77,6 +77,7 @@ var BaseTopUp = big.NewInt(100)
|
|||
var BaseRecall = big.NewInt(100)
|
||||
var TIPTRC21Fee = big.NewInt(23779191)
|
||||
var TIPTRC21FeeTestnet = big.NewInt(23779191)
|
||||
var BlockNumberGas50x = big.NewInt(TIPTRC21Fee.Int64() + 40000000)
|
||||
var LimitTimeFinality = uint64(30) // limit in 30 block
|
||||
|
||||
var IgnoreSignerCheckBlockArray = map[uint64]bool{
|
||||
|
|
|
|||
|
|
@ -21,10 +21,10 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
VersionMajor = 1 // Major version component of the current release
|
||||
VersionMinor = 4 // Minor version component of the current release
|
||||
VersionPatch = 9 // Patch version component of the current release
|
||||
VersionMeta = "beta" // Version metadata to append to the version string
|
||||
VersionMajor = 1 // Major version component of the current release
|
||||
VersionMinor = 4 // Minor version component of the current release
|
||||
VersionPatch = 10 // Patch version component of the current release
|
||||
VersionMeta = "beta1" // Version metadata to append to the version string
|
||||
)
|
||||
|
||||
// Version holds the textual version string.
|
||||
|
|
|
|||
Loading…
Reference in a new issue