Skip to content

Commit fe7ad56

Browse files
committed
Merge pull request #11689 from vegaprotocol/window-length-fix
fix: set max window length to 200
1 parent f6ee8fd commit fe7ad56

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/referral/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
"golang.org/x/exp/slices"
3333
)
3434

35-
const MaximumWindowLength uint64 = 100
35+
const MaximumWindowLength uint64 = 200
3636

3737
var (
3838
ErrIsAlreadyAReferee = func(party types.PartyID) error {

core/volumediscount/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"golang.org/x/exp/slices"
3131
)
3232

33-
const MaximumWindowLength uint64 = 100
33+
const MaximumWindowLength uint64 = 200
3434

3535
type Engine struct {
3636
broker Broker

core/volumerebate/engine.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"golang.org/x/exp/slices"
3131
)
3232

33-
const MaximumWindowLength uint64 = 100
33+
const MaximumWindowLength uint64 = 200
3434

3535
type Engine struct {
3636
broker Broker

0 commit comments

Comments
 (0)