Skip to content

Commit

Permalink
chore(suite): decrease node-bridge enrollment
Browse files Browse the repository at this point in the history
  • Loading branch information
MiroslavProchazka authored and mroz22 committed Nov 22, 2024
1 parent 970c1b6 commit c99eb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/suite-desktop-core/src/modules/bridge.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const shouldUseLegacyBridge = (store: Dependencies['store']) => {
const newBridgeRollout = Math.round(Math.random() * 100) / 100;
store.setBridgeSettings({ ...store.getBridgeSettings(), newBridgeRollout });
}
const newBridgeRollout = store.getBridgeSettings().newBridgeRollout || 0.01;
const newBridgeRollout = store.getBridgeSettings().newBridgeRollout || 0;
// note that this variable is duplicated with UI
const NEW_BRIDGE_ROLLOUT_THRESHOLD = 0;
const legacyBridgeReasonRollout = newBridgeRollout >= NEW_BRIDGE_ROLLOUT_THRESHOLD;
Expand Down

0 comments on commit c99eb19

Please sign in to comment.