Skip to content

Commit

Permalink
Merge pull request #3369 from aura-nw/baseline/main_20240425
Browse files Browse the repository at this point in the history
Fix issue voting
  • Loading branch information
nhphuc2411 authored Apr 25, 2024
2 parents b1deece + 7165730 commit d02c4a6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ export class ProposalVoteComponent {

const msg = {
typeUrl: TRANSACTION_TYPE_ENUM.Vote,
value: MsgVote.fromPartial({
value: {
voter: account.address,
proposalId: BigInt(this.data.id),
proposalId: this.data.id,
option: this.chainVoteOption[this.keyVote],
}),
},
};

this.isLoading = true;
Expand Down

0 comments on commit d02c4a6

Please sign in to comment.