Skip to content

Commit

Permalink
fix: frontend bug breaking weighted LP (#3667) (#3668)
Browse files Browse the repository at this point in the history
  • Loading branch information
p0mvn authored Aug 4, 2024
1 parent 63ba091 commit 83ba942
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
Expand Up @@ -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,
Expand Down

0 comments on commit 83ba942

Please sign in to comment.