aboutsummaryrefslogtreecommitdiff
path: root/src/cryptonote_core
diff options
context:
space:
mode:
authorHenry Hartshorne <HulkHartHenry@gmail.com>2014-04-25 22:08:19 +0400
committerHenry Hartshorne <HulkHartHenry@gmail.com>2014-04-25 22:08:19 +0400
commit6ed45078036d2cbdccc04219e4da5a401266f1b9 (patch)
treec1626c96c3c84271ffe3eb064d07fefd42e79a10 /src/cryptonote_core
parentmining bug fixed (diff)
downloadmonero-6ed45078036d2cbdccc04219e4da5a401266f1b9.tar.xz
Changed block minor version
Diffstat (limited to 'src/cryptonote_core')
-rw-r--r--src/cryptonote_core/cryptonote_format_utils.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/cryptonote_format_utils.cpp b/src/cryptonote_core/cryptonote_format_utils.cpp
index 2dd79abdc..a231f9c75 100644
--- a/src/cryptonote_core/cryptonote_format_utils.cpp
+++ b/src/cryptonote_core/cryptonote_format_utils.cpp
@@ -607,8 +607,8 @@ namespace cryptonote
string_tools::parse_hexstr_to_binbuff(genesis_coinbase_tx_hex, tx_bl);
bool r = parse_and_validate_tx_from_blob(tx_bl, bl.miner_tx);
CHECK_AND_ASSERT_MES(r, false, "failed to parse coinbase tx from hard coded blob");
- bl.major_version = CURRENT_BLOCK_MAJOR_VERSION;
- bl.minor_version = CURRENT_BLOCK_MINOR_VERSION;
+ bl.major_version = 1;
+ bl.minor_version = 0;
bl.timestamp = 0;
bl.nonce = 10000;
miner::find_nonce_for_given_block(bl, 1, 0);