From d5b93c6622f6be6e2c26d33c7629af09d43b2ae0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Kupka?= Date: Sat, 2 Jul 2016 15:30:16 +0200 Subject: [PATCH] Config: Add fields Add SteemitBlockchainHardforkVersion Add SteemitBlockchainVersion --- data.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/data.go b/data.go index 2b47104..cc6bac3 100644 --- a/data.go +++ b/data.go @@ -10,7 +10,9 @@ import ( ) type Config struct { - SteemitBlockInterval uint `json:"STEEMIT_BLOCK_INTERVAL"` + SteemitBlockchainHardforkVersion string `json:"STEEMIT_BLOCKCHAIN_HARDFORK_VERSION"` + SteemitBlockchainVersion string `json:"STEEMIT_BLOCKCHAIN_VERSION"` + SteemitBlockInterval uint `json:"STEEMIT_BLOCK_INTERVAL"` } type DynamicGlobalProperties struct {