We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfe42fc commit 4bd3b8aCopy full SHA for 4bd3b8a
2 files changed
crates/hashi/src/onchain/types.rs
@@ -470,7 +470,7 @@ pub struct Config {
470
const DUST_RELAY_MIN_VALUE: u64 = 546;
471
472
// 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;
+pub const DEFAULT_MPC_THRESHOLD_IN_BASIS_POINTS: u16 = 3334;
474
pub const DEFAULT_MPC_WEIGHT_REDUCTION_ALLOWED_DELTA: u16 = 800;
475
476
impl Config {
packages/hashi/sources/core/mpc_config.move
@@ -5,7 +5,7 @@ module hashi::mpc_config;
5
6
use hashi::{config::Config, config_value};
7
8
-const DEFAULT_THRESHOLD_IN_BASIS_POINTS: u64 = 3333;
+const DEFAULT_THRESHOLD_IN_BASIS_POINTS: u64 = 3334;
9
10
const MAX_BPS: u64 = 10000;
11
0 commit comments