Skip to content
This repository has been archived by the owner on Oct 20, 2023. It is now read-only.

Commit

Permalink
Adjust Lyra2v2 Hashrate multiplier. Fixes #168
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Weichhold committed Jan 15, 2018
1 parent c3d79c3 commit db8cab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MiningCore/Blockchain/Bitcoin/BitcoinPoolBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ public override double HashrateFromShares(double shares, double interval)

// OW: tmp hotfix
if (poolConfig.Coin.Type == CoinType.MONA || poolConfig.Coin.Type == CoinType.VTC || poolConfig.Coin.Type == CoinType.STAK)
result *= 2;
result *= 4;

return result;
}
Expand Down

0 comments on commit db8cab8

Please sign in to comment.