We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7612ef commit f3b7cc4Copy full SHA for f3b7cc4
target_chains/ton/contracts/contracts/Wormhole.fc
@@ -133,7 +133,7 @@ int governance_action_is_consumed(int hash) method_id {
133
(int expiration_time, cell keys_dict, int key_count) = get_guardian_set_internal(vm_guardian_set_index);
134
throw_if(ERROR_INVALID_GUARDIAN_SET_KEYS_LENGTH, cell_null?(keys_dict));
135
throw_unless(ERROR_INVALID_GUARDIAN_SET,
136
- (current_guardian_set_index == vm_guardian_set_index) &
+ (current_guardian_set_index >= vm_guardian_set_index) &
137
((expiration_time == 0) | (expiration_time > now()))
138
);
139
int signers_length = in_msg_body~load_uint(8);
0 commit comments