File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change 2
2
3
3
See [ RELEASE] ( ./RELEASE.md ) for workflow instructions.
4
4
5
+ ## Release v1.6.6-hotfix1
6
+
7
+ ### Improvements
8
+
9
+ * [ #6248 ] ( https://github.com/spacemeshos/go-spacemesh/pull/6248 ) Fixed node not being able to handle more than 6.55M
10
+ ATXs per epoch.
11
+
5
12
## Release v1.6.6
6
13
7
14
### Improvements
Original file line number Diff line number Diff line change @@ -121,7 +121,8 @@ type MaliciousIDs struct {
121
121
122
122
type EpochData struct {
123
123
// When changing this value also check
124
- // - the size of `ResponseMessage` above
124
+ // - the size of `ResponseMessage.Data` above
125
+ // - the size of `Response.Data` in `p2p/server/server.go`
125
126
// - the size of `NodeIDs` in `MaliciousIDs` above
126
127
// - the size of `Set` in `EpochActiveSet` in common/types/activation.go
127
128
// - the size of `EligibilityProofs` in the type `Ballot` in common/types/ballot.go
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ func (err *ServerError) Error() string {
138
138
// Response is a server response.
139
139
type Response struct {
140
140
// keep in line with limit of ResponseMessage.Data in `fetch/wire_types.go`
141
- Data []byte `scale:"max=209715200 "` // 200 MiB > 6 .0 mio ATX * 32 bytes per ID
141
+ Data []byte `scale:"max=272629760 "` // 260 MiB > 8 .0 mio ATX * 32 bytes per ID
142
142
Error string `scale:"max=1024"` // TODO(mafa): make error code instead of string
143
143
}
144
144
You can’t perform that action at this time.
0 commit comments