create account

RE: STEEM Mining for Windows / Linux / Linux VM in Windows by zarnow

View this thread on: hive.blogpeakd.comecency.com

Viewing a response to: @r3b37/steem-mining-for-windows-linux-linux-vm-in-windows

· @zarnow ·
i cannot resync blockchain properly:

   97.0789%   3200000 of 3296287   
811552ms th_a       database.cpp:2518             _apply_block         ] 3090000 unknown_hardfork_exception: chain attempted to apply unknown hardfork

    {}
    th_a  database.cpp:3257 steemit::chain::database::process_hardforks
811555ms th_a       application.cpp:349           startup              ] 3090000 unknown_hardfork_exception: chain attempted to apply unknown hardfork

    {}
    th_a  database.cpp:3257 steemit::chain::database::process_hardforks
rethrow
    {}
    th_a  database.cpp:2518 steemit::chain::database::_apply_block

    {"data_dir":"C:/tools/witness_node_data_dir/blockchain"}
    th_a  database.cpp:191 steemit::chain::database::reindex
811556ms th_a       application.cpp:871           startup              ] 3090000 unknown_hardfork_exception: chain attempted to apply unknown hardfork

    {}
    th_a  database.cpp:3257 steemit::chain::database::process_hardforks
rethrow
    {}
    th_a  database.cpp:2518 steemit::chain::database::_apply_block

    {"data_dir":"C:/tools/witness_node_data_dir/blockchain"}
    th_a  database.cpp:191 steemit::chain::database::reindex
rethrow
    {}
    th_a  application.cpp:349 steemit::app::detail::application_impl::startup
811556ms th_a       main.cpp:196                  main                 ] Exiting with error:
3090000 unknown_hardfork_exception: chain attempted to apply unknown hardfork

    {}
    th_a  database.cpp:3257 steemit::chain::database::process_hardforks
rethrow
    {}
    th_a  database.cpp:2518 steemit::chain::database::_apply_block

    {"data_dir":"C:/tools/witness_node_data_dir/blockchain"}
    th_a  database.cpp:191 steemit::chain::database::reindex
rethrow
    {}
    th_a  application.cpp:349 steemit::app::detail::application_impl::startup
properties (22)
authorzarnow
permlinkre-r3b37-steem-mining-for-windows-linux-linux-vm-in-windows-20160720t201815110z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-20 20:18:00
last_update2016-07-20 20:18:00
depth1
children2
last_payout2016-08-23 06:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,818
author_reputation0
root_title"STEEM Mining for Windows / Linux / Linux VM in Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id228,412
net_rshares0
@maebo ·
Hi!
I have the same problem here. How did you fix it?
👍  
properties (23)
authormaebo
permlinkre-zarnow-re-r3b37-steem-mining-for-windows-linux-linux-vm-in-windows-20160724t083128508z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-24 08:31:24
last_update2016-07-24 08:31:24
depth2
children0
last_payout2016-08-23 06:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation8,993,524
root_title"STEEM Mining for Windows / Linux / Linux VM in Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id315,867
net_rshares59,622,341
author_curate_reward""
vote details (1)
@r3b37 · (edited)
Below is the cpp source code responsible for throwing this error and I am not sure but this might be a backend (server) issue. So you can try again after sometime or delete everything and start from scratch.

<code>
void database::process_hardforks()
{
   try
   {
      // If there are upcoming hardforks and the next one is later, do nothing
      const auto& hardforks = hardfork_property_id_type()( *this );</code>

      if( has_hardfork( STEEMIT_HARDFORK_0_5__54 ) )
      {
         while( _hardfork_versions[ hardforks.last_hardfork ] < hardforks.next_hardfork
            && hardforks.next_hardfork_time <= head_block_time() )
         {
            if( hardforks.last_hardfork < STEEMIT_NUM_HARDFORKS )
               apply_hardfork( hardforks.last_hardfork + 1 );
            else
               throw unknown_hardfork_exception();
         }
      }
      else
      {
         while( hardforks.last_hardfork < STEEMIT_NUM_HARDFORKS
               && _hardfork_times[ hardforks.last_hardfork + 1 ] <= head_block_time()
               && hardforks.last_hardfork < STEEMIT_HARDFORK_0_5__54 )
         {
            apply_hardfork( hardforks.last_hardfork + 1 );
         }
      }
<code>}
   FC_CAPTURE_AND_RETHROW()
}</code>
👍  
properties (23)
authorr3b37
permlinkre-zarnow-re-r3b37-steem-mining-for-windows-linux-linux-vm-in-windows-20160720t204313178z
categorysteem
json_metadata{"tags":["steem"]}
created2016-07-20 20:43:18
last_update2016-07-20 20:47:18
depth2
children0
last_payout2016-08-23 06:20:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,235
author_reputation119,348,157,176
root_title"STEEM Mining for Windows / Linux / Linux VM in Windows"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id229,021
net_rshares8,935,529,168
author_curate_reward""
vote details (1)