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:
CalDescent 2021-12-28 14:25:17 +00:00
parent 04295ea8c5
commit 90ced351f4

View File

@ -34,7 +34,7 @@ public class ArbitraryDataManager extends Thread {
/** Difficulty (leading zero bits) used in arbitrary data transactions
* 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 */
public static final long ARBITRARY_REQUEST_TIMEOUT = 6 * 1000L; // ms