@@ -57,8 +57,8 @@ code CLASS::start() NOEXCEPT
57
57
58
58
if (!state_)
59
59
{
60
- fault (error::get_candidate_chain_state );
61
- return error::get_candidate_chain_state ;
60
+ fault (error::organize1 );
61
+ return error::organize1 ;
62
62
}
63
63
64
64
LOGN (" Candidate top [" << system ::encode_hash (state_->hash ()) << " :"
@@ -205,14 +205,14 @@ void CLASS::do_organize(typename Block::cptr block,
205
205
206
206
if (!get_branch_work (work, branch_point, tree_branch, store_branch, header))
207
207
{
208
- handler (fault (error::get_branch_work ), height);
208
+ handler (fault (error::organize2 ), height);
209
209
return ;
210
210
}
211
211
212
212
// branch_point is the highest tree-candidate common block.
213
213
if (!get_is_strong (strong, work, branch_point))
214
214
{
215
- handler (fault (error::get_is_strong ), height);
215
+ handler (fault (error::organize3 ), height);
216
216
return ;
217
217
}
218
218
@@ -235,7 +235,7 @@ void CLASS::do_organize(typename Block::cptr block,
235
235
const auto top_candidate = state_->height ();
236
236
if (branch_point > top_candidate)
237
237
{
238
- handler (fault (error::invalid_branch_point ), height);
238
+ handler (fault (error::organize4 ), height);
239
239
return ;
240
240
}
241
241
@@ -247,7 +247,7 @@ void CLASS::do_organize(typename Block::cptr block,
247
247
if ((is_under_milestone (index ) && !query.set_unstrong (candidate)) ||
248
248
!query.pop_candidate ())
249
249
{
250
- handler (fault (error::pop_candidate ), height);
250
+ handler (fault (error::organize5 ), height);
251
251
return ;
252
252
}
253
253
@@ -264,7 +264,7 @@ void CLASS::do_organize(typename Block::cptr block,
264
264
if ((is_under_milestone (index ) && !query.set_strong (link )) ||
265
265
!query.push_candidate (link ))
266
266
{
267
- handler (fault (error::push_candidate ), height);
267
+ handler (fault (error::organize6 ), height);
268
268
return ;
269
269
}
270
270
@@ -347,15 +347,15 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
347
347
size_t height{};
348
348
if (!query.get_height (height, link ) || is_zero (height))
349
349
{
350
- fault (error::get_height );
350
+ fault (error::organize7 );
351
351
return ;
352
352
}
353
353
354
354
// Must reorganize down to fork point, since entire branch is now weak.
355
355
const auto fork_point = query.get_fork ();
356
356
if (height <= fork_point)
357
357
{
358
- fault (error::invalid_fork_point );
358
+ fault (error::organize8 );
359
359
return ;
360
360
}
361
361
@@ -365,7 +365,7 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
365
365
auto state = query.get_candidate_chain_state (settings_, fork_point);
366
366
if (!state)
367
367
{
368
- fault (error::get_candidate_chain_state );
368
+ fault (error::organize9 );
369
369
return ;
370
370
}
371
371
@@ -378,7 +378,7 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
378
378
{
379
379
if (!get_block (block, index ))
380
380
{
381
- fault (error::get_block );
381
+ fault (error::organize10 );
382
382
return ;
383
383
}
384
384
@@ -398,7 +398,7 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
398
398
if ((is_under_milestone (index ) && !query.set_unstrong (candidate)) ||
399
399
!query.pop_candidate ())
400
400
{
401
- fault (error::pop_candidate );
401
+ fault (error::organize11 );
402
402
return ;
403
403
}
404
404
@@ -418,7 +418,7 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
418
418
// Confirmed are already set_strong and must stay that way.
419
419
if (!query.push_candidate (query.to_confirmed (index )))
420
420
{
421
- fault (error::push_candidate );
421
+ fault (error::organize12 );
422
422
return ;
423
423
}
424
424
@@ -428,7 +428,7 @@ void CLASS::do_disorganize(header_t link) NOEXCEPT
428
428
state = query.get_candidate_chain_state (settings_, top_confirmed);
429
429
if (!state)
430
430
{
431
- fault (error::get_candidate_chain_state );
431
+ fault (error::organize13 );
432
432
return ;
433
433
}
434
434
@@ -552,7 +552,7 @@ code CLASS::push_block(const Block& block,
552
552
return ec;
553
553
554
554
if (!query.push_candidate (link ))
555
- return error::push_candidate ;
555
+ return error::organize14 ;
556
556
557
557
return ec;
558
558
}
@@ -562,7 +562,7 @@ code CLASS::push_block(const system::hash_digest& key) NOEXCEPT
562
562
{
563
563
const auto handle = tree_.extract (key);
564
564
if (!handle)
565
- return error::branch_error ;
565
+ return error::organize15 ;
566
566
567
567
const auto & value = handle.mapped ();
568
568
return push_block (*value.block , value.state ->context ());
0 commit comments