Skip to content

Commit 8871ca6

Browse files
committed
enable syncv2 on mainnet (#6795)
1 parent ec0d3b0 commit 8871ca6

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
See [RELEASE](./RELEASE.md) for workflow instructions.
44

5+
## v1.8.1
6+
7+
### Highlights
8+
9+
This release will enable syncv2 fully to sync ATXs for all nodes. This should greatly reduce the time it takes to sync
10+
a node from genesis and the amount of data that is needed to be exchanged with the network to keep a node in sync. The
11+
improvements are enabled automatically after upgrading to this version and no user action is needed.
12+
13+
### Improvements
14+
15+
* [6792](https://github.com/spacemeshos/go-spacemesh/pull/6792) Fixed race condition in `FPTree` implementation (sync v2).
16+
17+
* [6794](https://github.com/spacemeshos/go-spacemesh/pull/6794) Increased database connection idle timeout,
18+
which should reduce occurances of `SQLITE_BUSY` errors.
19+
520
## v1.8.0
621

722
### Highlights
@@ -20,6 +35,9 @@ in terms of data size and more easily extendable in the future.
2035
* [#6779](https://github.com/spacemeshos/go-spacemesh/pull/6779) Fixed the malfeasance publisher not emitting events.
2136
This caused the node to miss malfeasance proofs when streaming via the GRPC API.
2237

38+
* [#6784](https://github.com/spacemeshos/go-spacemesh/pull/6784) Fixed possible corruptions of DB transactions
39+
when a context is cancelled mid transaction (sync v2).
40+
2341
## v1.7.17
2442

2543
### Improvements

config/mainnet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func MainnetConfig() Config {
230230
MalSync: malsync.DefaultConfig(),
231231
ReconcSync: syncer.ReconcSyncConfig{
232232
Enable: true,
233-
EnableActiveSync: false,
233+
EnableActiveSync: true,
234234
OldAtxSyncCfg: oldAtxSyncCfg,
235235
NewAtxSyncCfg: newAtxSyncCfg,
236236
ParallelLoadLimit: 10,

0 commit comments

Comments
 (0)