A fix for miner stuck after dropped signing.

This commit is contained in:
Revertron
2021-04-26 01:16:34 +02:00
parent ef38315452
commit 5677b860e4
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -363,6 +363,7 @@ fn find_hash(context: Arc<Mutex<Context>>, mut block: Block, running: Arc<Atomic
if context.chain.get_height() >= block.index {
if !full {
info!("Blockchain changed while mining signing block, dropping work");
running.store(false, Ordering::SeqCst);
return None;
}
break;