Skip to content

Commit

Permalink
changes made in governance model type u64 to i64
Browse files Browse the repository at this point in the history
  • Loading branch information
nagarajm22 committed Jul 5, 2024
1 parent bd540ae commit b8647b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions json/src/governance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ pub struct ListVotesResult {
pub struct ListProposalsOptions {
pub r#type: Option<ListProposalsType>,
pub status: Option<ListProposalsStatus>,
pub cycle: Option<u64>,
pub cycle: Option<i64>,
pub pagination: Option<ListProposalsPagination>,
}

Expand All @@ -154,7 +154,7 @@ pub struct ListProposalsPagination {
pub struct ListGovProposalVotesOptions {
pub proposal_id: Option<Txid>,
pub masternode: Option<String>,
pub cycle: Option<u64>,
pub cycle: Option<i64>,
pub pagination: Option<ListGovProposalVotesPagination>,
pub aggregate: Option<bool>,
pub valid: Option<bool>,
Expand Down

0 comments on commit b8647b2

Please sign in to comment.