diff options
author | Jimmy Hu <jimmy.hu@dexon.org> | 2018-12-28 13:14:37 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:27:20 +0800 |
commit | 2426b985ae9773afe12f5a9f982cf4f2629f81a3 (patch) | |
tree | 464b39871fbbc93dd362abc5af1c65508ddb1217 /cmd/gdex | |
parent | 4addfe8d10fbdd01e23ab60a39d249c9d8af8ee5 (diff) | |
download | go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar.gz go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar.bz2 go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar.lz go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar.xz go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.tar.zst go-tangerine-2426b985ae9773afe12f5a9f982cf4f2629f81a3.zip |
core/vm: Add fine to governance. (#107)
* core/vm: Add Fined field to nodeInfo.
* core/vm: Add PayFine to Governance
* Not qualify if staked-fine < minStake()
* Add test for fine
* Update genesis hash
Diffstat (limited to 'cmd/gdex')
-rw-r--r-- | cmd/gdex/dao_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gdex/dao_test.go b/cmd/gdex/dao_test.go index 648460b1d..b972e9240 100644 --- a/cmd/gdex/dao_test.go +++ b/cmd/gdex/dao_test.go @@ -127,7 +127,7 @@ func testDAOForkBlockNewChain(t *testing.T, test int, genesis string, expectBloc } defer db.Close() - genesisHash := common.HexToHash("0x48fd77589c2a011fdc764237b9f071577799b7dcc618f25a74fca05dc0b1ad2e") + genesisHash := common.HexToHash("0xf0510808109583b9ef62f846886179f2fb40d1d4f1872d33529947bdd03e9bc1") if genesis != "" { genesisHash = daoGenesisHash } |