diff --git a/src/Miningcore/Blockchain/Ethereum/EthereumPayoutHandler.cs b/src/Miningcore/Blockchain/Ethereum/EthereumPayoutHandler.cs index 159a30873..984649066 100644 --- a/src/Miningcore/Blockchain/Ethereum/EthereumPayoutHandler.cs +++ b/src/Miningcore/Blockchain/Ethereum/EthereumPayoutHandler.cs @@ -158,6 +158,7 @@ public async Task ClassifyBlocksAsync(IMiningPool pool, Block[] blocks, // execute batch var blockInfo2s = await FetchBlocks(blockCache, ct, range.ToArray()); + var matchUncle = false; foreach(var blockInfo2 in blockInfo2s) { @@ -212,13 +213,19 @@ public async Task ClassifyBlocksAsync(IMiningPool pool, Block[] blocks, messageBus.NotifyBlockUnlocked(poolConfig.Id, block, coin); } - else + else { + matchUncle = true; logger.Info(() => $"[{LogCategory}] Got immature matching uncle for block {blockInfo2.Height.Value}. Will try again."); + } break; } } } + + if (matchUncle) + continue; + if(block.Status == BlockStatus.Pending && block.ConfirmationProgress > 0.75) {