Skip to content

Commit

Permalink
fix logs, added param to config
Browse files Browse the repository at this point in the history
  • Loading branch information
0xBECEDA committed Jun 20, 2024
1 parent 10748dd commit 9929d14
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 1 addition & 2 deletions activation/post_verifier.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,7 @@ func (v *offloadingPostVerifier) Verify(
var jobChannel chan<- *verifyPostJob

if ctx.Value(prioritizedVerifyCall) == true {
v.log.Debug("prioritizing current post verification call",
zap.Stringer("proof_node_id", types.BytesToNodeID(m.NodeId)))
v.log.Debug("prioritizing current post verification call")
jobChannel = v.prioritized
} else {
_, prioritize := v.prioritizedIds[types.BytesToNodeID(m.NodeId)]
Expand Down
3 changes: 2 additions & 1 deletion systest/parameters/bignet/smesher.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"poet": {
"phase-shift": "300m",
"cycle-gap": "40m",
"grace-period": "10m"
"grace-period": "10m",
"positioning-atx-selection-timeout":"7m"
},
"tortoise": {
"tortoise-zdist": 4,
Expand Down
3 changes: 2 additions & 1 deletion systest/parameters/fastnet/smesher.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"poet": {
"phase-shift": "30s",
"cycle-gap": "30s",
"grace-period": "10s"
"grace-period": "10s",
"positioning-atx-selection-timeout":"7s"
},
"api": {
"grpc-public-listener": "0.0.0.0:9092",
Expand Down
3 changes: 2 additions & 1 deletion systest/parameters/longfast/smesher.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"poet": {
"phase-shift": "10m",
"cycle-gap": "1m",
"grace-period": "5s"
"grace-period": "5s",
"positioning-atx-selection-timeout":"3s"
},
"tortoise": {
"tortoise-zdist": 4,
Expand Down

0 comments on commit 9929d14

Please sign in to comment.