Skip to content

Commit

Permalink
Fix vote service types
Browse files Browse the repository at this point in the history
  • Loading branch information
ChewingGlass committed Jul 24, 2024
1 parent e742bf5 commit d9ff933
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/voter-stake-registry-sdk/src/voteService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ export type Proposal = {
namespace: string;
owner: string;
state: object;
created_at: number;
proposal_config: string;
max_choices_per_voter: number;
createdAt: number;
proposalConfig: string;
maxChoicesPerVoter: number;
seed: Buffer;
name: string;
uri: string;
tags: string[];
choices: { name: string; weight: string; uri: string }[];
bump_seed: number;
refreshed_at: Date;
bumpSeed: number;
refreshedAt: Date;
};

export type ProposalWithVotes = Proposal & {
Expand Down

0 comments on commit d9ff933

Please sign in to comment.