From 6a2ab3bc6a2aa04af51ec9f0813ab131e54d28ba Mon Sep 17 00:00:00 2001 From: jolan Date: Thu, 16 Mar 2017 11:42:08 -0500 Subject: [PATCH] fix StakeBaseSigScript and a comment (#625) --- chaincfg/params.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chaincfg/params.go b/chaincfg/params.go index d8a8d58584..558947979d 100644 --- a/chaincfg/params.go +++ b/chaincfg/params.go @@ -709,7 +709,7 @@ var TestNetParams = Params{ BlockOneLedger: BlockOneLedgerTestNet, } -// Test2NetParams defines the network parameters for the test currency network. +// TestNet2Params defines the network parameters for the test currency network. // This network is sometimes simply called "testnet". // This is the second public iteration of testnet. var TestNet2Params = Params{ @@ -807,7 +807,7 @@ var TestNet2Params = Params{ MaxFreshStakePerBlock: 20, // 4*TicketsPerBlock StakeEnabledHeight: 16 + 16, // CoinbaseMaturity + TicketMaturity StakeValidationHeight: 768, // Arbitrary - StakeBaseSigScript: []byte{0xDE, 0xAD, 0xBE, 0xEF}, + StakeBaseSigScript: []byte{0x00, 0x00}, StakeMajorityMultiplier: 3, StakeMajorityDivisor: 4,