Skip to content

Commit

Permalink
Merge pull request #1793 from multiversx/staking-module-change
Browse files Browse the repository at this point in the history
decrease MINIMUM_BOARD_MEMBERS number in staking_module
  • Loading branch information
alyn509 authored Oct 2, 2024
2 parents 68adc07 + b63ee50 commit cca98a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/modules/src/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pub struct TokenAmountPair<M: ManagedTypeApi> {
}

static NOT_ENOUGH_STAKE_ERR_MSG: &[u8] = b"Not enough stake";
static MINIMUM_BOARD_MEMBERS: usize = 3;
static MINIMUM_BOARD_MEMBERS: usize = 2;
static MAXIMUM_BOARD_MEMBERS: usize = 100;

#[multiversx_sc::module]
Expand Down

0 comments on commit cca98a9

Please sign in to comment.