Skip to content

Commit

Permalink
Increase threshold as some dust outputs could be larger than 6000 sta…
Browse files Browse the repository at this point in the history
…toshis
  • Loading branch information
itserg committed Jan 23, 2018
1 parent b017dd2 commit 4789cc4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -858,7 +858,7 @@ public NetworkParameters getNetwork() {

// TODO: 07.10.17 these values are subject to change and not a solid way to detect cc outputs.
public static final int COLU_MAX_DUST_OUTPUT_SIZE_TESTNET = 600;
public static final int COLU_MAX_DUST_OUTPUT_SIZE_MAINNET = 6000;
public static final int COLU_MAX_DUST_OUTPUT_SIZE_MAINNET = 10000;

private boolean isColuTransaction(Transaction tx) {
if (tx == null) {
Expand Down

0 comments on commit 4789cc4

Please sign in to comment.