Skip to content

Commit

Permalink
Fix relinquish vote memory
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Oct 20, 2023
1 parent 98365af commit 18d0592
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion programs/voter-stake-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "voter-stake-registry"
version = "0.2.2"
version = "0.2.3"
description = "Heliums voter weight plugin for spl-governance"
license = "GPL-3.0-or-later"
homepage = "https://github.com/helium/helium-program-library"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct RelinquishExpiredVoteV0<'info> {
mut,
constraint = !matches!(proposal.state, ProposalState::Voting { .. })
)]
pub proposal: Account<'info, ProposalV0>,
pub proposal: Box<Account<'info, ProposalV0>>,
pub system_program: Program<'info, System>,
}

Expand Down

0 comments on commit 18d0592

Please sign in to comment.