File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -258,11 +258,11 @@ impl StacksClient {
258
258
reward_cycle : u64 ,
259
259
) -> Result < Option < Point > , ClientError > {
260
260
let function_name = ClarityName :: from ( "get-approved-aggregate-key" ) ;
261
- let pox_contract_id = boot_code_id ( SIGNERS_VOTING_NAME , self . mainnet ) ;
261
+ let voting_contract_id = boot_code_id ( SIGNERS_VOTING_NAME , self . mainnet ) ;
262
262
let function_args = & [ ClarityValue :: UInt ( reward_cycle as u128 ) ] ;
263
263
let value = self . read_only_contract_call (
264
- & pox_contract_id . issuer . into ( ) ,
265
- & pox_contract_id . name ,
264
+ & voting_contract_id . issuer . into ( ) ,
265
+ & voting_contract_id . name ,
266
266
& function_name,
267
267
function_args,
268
268
) ?;
Original file line number Diff line number Diff line change @@ -1268,7 +1268,7 @@ impl Signer {
1268
1268
let Some ( round_weight) = stacks_client
1269
1269
. get_round_vote_weight ( self . reward_cycle , self . coordinator . current_dkg_id ) ?
1270
1270
else {
1271
- // This only will happen if soemhow we registered as a signer and were granted no weight which should not really ever happen.
1271
+ // This only will happen if somehow we registered as a signer and were granted no weight which should not really ever happen.
1272
1272
error ! ( "{self}: already voted for DKG, but no round vote weight found. We either have no voting power or the contract is corrupted." ;
1273
1273
"voting_round" => self . coordinator. current_dkg_id,
1274
1274
"aggregate_key" => %aggregate_key
You can’t perform that action at this time.
0 commit comments