Commit 354e0d42 authored by vipwzw's avatar vipwzw Committed by 33cn

ticket add price

parent eef26eea
...@@ -53,7 +53,8 @@ func NewDB(id, minerAddress, returnWallet string, blocktime, height, price int64 ...@@ -53,7 +53,8 @@ func NewDB(id, minerAddress, returnWallet string, blocktime, height, price int64
t.Status = 1 t.Status = 1
t.IsGenesis = isGenesis t.IsGenesis = isGenesis
t.prevstatus = 0 t.prevstatus = 0
if types.IsFork(height, "ForkChainParamV2") { //height == 0 的情况下,不去改变 genesis block
if types.IsFork(height, "ForkChainParamV2") && height > 0 {
t.Price = price t.Price = price
} }
return t return t
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment