Skip to content

Commit

Permalink
fix(coinjoin): change lookahead to 500 (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
HashEngineering authored Dec 2, 2024
1 parent 28e631e commit 6169e72
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@

public class CoinJoinExtension extends AbstractKeyChainGroupExtension {
private static final Logger log = LoggerFactory.getLogger(CoinJoinExtension.class);
private static final int COINJOIN_LOOKADHEAD = 400;
private static final int COINJOIN_LOOKADHEAD = 500;
private static final int COINJOIN_LOOKADHEAD_THRESHOLD = COINJOIN_LOOKADHEAD - 1;

protected AnyKeyChainGroup coinJoinKeyChainGroup;
Expand Down

0 comments on commit 6169e72

Please sign in to comment.