From f0dbec0c93a772b0f3553399126d8c49bfcc85d4 Mon Sep 17 00:00:00 2001 From: Péter Szilágyi Date: Sat, 29 Oct 2016 13:33:57 +0300 Subject: cmd, params: only set default fork configs for test and mainnet --- core/block_validator.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core') diff --git a/core/block_validator.go b/core/block_validator.go index 3f5aa10ff..1bb1a9713 100644 --- a/core/block_validator.go +++ b/core/block_validator.go @@ -253,7 +253,7 @@ func ValidateHeader(config *ChainConfig, pow pow.PoW, header *types.Header, pare } if config.HomesteadGasRepriceBlock != nil && config.HomesteadGasRepriceBlock.Cmp(header.Number) == 0 { if config.HomesteadGasRepriceHash != (common.Hash{}) && config.HomesteadGasRepriceHash != header.Hash() { - return ValidationError("Homestead gas reprice fork hash mismatch: have 0x%x, want 0x%x", header.Hash(), config.HomesteadGasRepriceBlock) + return ValidationError("Homestead gas reprice fork hash mismatch: have 0x%x, want 0x%x", header.Hash(), config.HomesteadGasRepriceHash) } } return nil -- cgit