aboutsummaryrefslogtreecommitdiffstats
path: root/params/config.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@byzantine-lab.io>2019-06-16 17:15:00 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-09-17 16:57:30 +0800
commitaa9c5b22941aadfefcde64d2570d6c6863bc2ebe (patch)
tree59c0c63e4a7f85c4d804d872d4b3aaea29305026 /params/config.go
parent0f7b223fa10ec41f1d2342d3b5de9a9f6a7432ce (diff)
downloadgo-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar.gz
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar.bz2
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar.lz
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar.xz
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.tar.zst
go-tangerine-aa9c5b22941aadfefcde64d2570d6c6863bc2ebe.zip
core: set block timestamp to second instead of millisecond
Diffstat (limited to 'params/config.go')
-rw-r--r--params/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/params/config.go b/params/config.go
index b0ed002ee..a7394fd0d 100644
--- a/params/config.go
+++ b/params/config.go
@@ -56,7 +56,7 @@ var (
GenesisCRSText: "In DEXON, we trust.",
Owner: common.HexToAddress("0x2D9f82B399113De36c718BEf361528a856208057"),
MinStake: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)),
- LockupPeriod: 86400 * 1000,
+ LockupPeriod: 86400,
MiningVelocity: 0.1875,
NextHalvingSupply: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(2.5e9)),
LastHalvedAmount: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1.5e9)),
@@ -100,7 +100,7 @@ var (
GenesisCRSText: "OOOOoooooooooooooooooooooooooooo",
Owner: common.HexToAddress("0x0D54AF942d6bF13870F5CA65D470954f21D3cBE5"),
MinStake: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1e6)),
- LockupPeriod: 86400 * 1000,
+ LockupPeriod: 86400,
MiningVelocity: 0.1875,
NextHalvingSupply: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(2.5e9)),
LastHalvedAmount: new(big.Int).Mul(big.NewInt(1e18), big.NewInt(1.5e9)),