Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: frontend bug breaking weighted LP
Browse files Browse the repository at this point in the history
p0mvn committed Aug 4, 2024
1 parent 9dbcb2d commit 246a675
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pools/src/weighted.ts
Original file line number Diff line number Diff line change
@@ -133,7 +133,7 @@ export class WeightedPool implements SharePool, RoutablePool {

/** LBP pool */
get smoothWeightChange(): SmoothWeightChangeParams | undefined {
if (this.raw.pool_params.smooth_weight_change_params !== null) {
if (this.raw.pool_params.smooth_weight_change_params != null) {
const {
start_time,
duration,

0 comments on commit 246a675

Please sign in to comment.