Skip to content

Commit

Permalink
fix: tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kukkok3 committed Nov 27, 2023
1 parent 60d50e9 commit 12166fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration-tests/src/common/mainnet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ impl MainnetWallet {
CatalystRegistration {
stake_public_key: self.stake_public_key(),
voting_power: self.stake.into(),
reward_address: self.reward_address(),
voting_public_key: self.inner.identifier().into(),
rewards_address: self.reward_address(),
delegations: self.inner.identifier().into(),
}
}

Expand Down
2 changes: 1 addition & 1 deletion integration-tests/src/common/vote_plan_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl VotePlanStatusProvider for Block0Configuration {

for vote in votes {
for vote_plan in active_vote_plan.iter_mut() {
if let Some(mut proposal) = vote_plan
if let Some(proposal) = vote_plan
.proposals
.iter_mut()
.find(|p| p.proposal_id == vote.proposal_id)
Expand Down

0 comments on commit 12166fb

Please sign in to comment.