Skip to content

Commit 1b561fa

Browse files
committed
Adjusting to mainnet.
1 parent 212d69b commit 1b561fa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/pool.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Properties for Burstcoin Pool
1+
# Properties for Babel Pool
22

33
# The port to run the server on
44
serverPort = 8000
55

66
# The address of the node to connect to (with port)
7-
#nodeAddresses = http://localhost:8125
8-
nodeAddresses = http://localhost:6876
7+
nodeAddresses = http://localhost:8125
8+
#nodeAddresses = http://localhost:6876
99

1010
# The name of the pool
1111
poolName = BABEL POOL

src/main/java/burst/pool/storage/config/Props.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class Props {
2525
public static final Prop<Integer> nMin = new Prop<>("nMin", 1); // Must be ?
2626
public static final Prop<Long> maxDeadline = new Prop<>("maxDeadline", Long.MAX_VALUE); // Must be > 0
2727
public static final Prop<Integer> processLag = new Prop<>("processLag", 10); // Must be > 0
28-
public static final Prop<Integer> pocPlusBlock = new Prop<>("pocPlusBlock", 271_000);
28+
public static final Prop<Integer> pocPlusBlock = new Prop<>("pocPlusBlock", 878_000);
2929

3030
public static final Prop<BurstAddress> feeRecipient = new Prop<>("feeRecipient", null); // Must be non null
3131
public static final Prop<BurstAddress> donationRecipient = new Prop<>("donationRecipient", null); // Must be non null

0 commit comments

Comments
 (0)