forked from Qortal/qortal
ARBITRARY transaction difficulty increased to 14, bringing it in line with MESSAGE transactions.
14 is currently the lowest accepted difficulty for on-chain transactions, so it's best that we don't go lower than that.
This commit is contained in:
parent
04295ea8c5
commit
90ced351f4
@ -34,7 +34,7 @@ public class ArbitraryDataManager extends Thread {
|
|||||||
|
|
||||||
/** Difficulty (leading zero bits) used in arbitrary data transactions
|
/** Difficulty (leading zero bits) used in arbitrary data transactions
|
||||||
* Set here so that it can be more easily reduced when running unit tests */
|
* Set here so that it can be more easily reduced when running unit tests */
|
||||||
private int powDifficulty = 12; // Must not be final, as unit tests need to reduce this value
|
private int powDifficulty = 14; // Must not be final, as unit tests need to reduce this value
|
||||||
|
|
||||||
/** Request timeout when transferring arbitrary data */
|
/** Request timeout when transferring arbitrary data */
|
||||||
public static final long ARBITRARY_REQUEST_TIMEOUT = 6 * 1000L; // ms
|
public static final long ARBITRARY_REQUEST_TIMEOUT = 6 * 1000L; // ms
|
||||||
|
Loading…
x
Reference in New Issue
Block a user