Skip to content

Commit 4bd3b8a

Browse files
committed
feat: change default t from 3333 to 3334
1 parent dfe42fc commit 4bd3b8a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

crates/hashi/src/onchain/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ pub struct Config {
470470
const DUST_RELAY_MIN_VALUE: u64 = 546;
471471

472472
// These mirror the defaults in mpc_config.move and must be kept in sync.
473-
pub const DEFAULT_MPC_THRESHOLD_IN_BASIS_POINTS: u16 = 3333;
473+
pub const DEFAULT_MPC_THRESHOLD_IN_BASIS_POINTS: u16 = 3334;
474474
pub const DEFAULT_MPC_WEIGHT_REDUCTION_ALLOWED_DELTA: u16 = 800;
475475

476476
impl Config {

packages/hashi/sources/core/mpc_config.move

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ module hashi::mpc_config;
55

66
use hashi::{config::Config, config_value};
77

8-
const DEFAULT_THRESHOLD_IN_BASIS_POINTS: u64 = 3333;
8+
const DEFAULT_THRESHOLD_IN_BASIS_POINTS: u64 = 3334;
99

1010
const MAX_BPS: u64 = 10000;
1111

0 commit comments

Comments
 (0)