Skip to content

Commit

Permalink
fix democracy.vote extrinsic
Browse files Browse the repository at this point in the history
  • Loading branch information
brenzi committed Mar 6, 2024
1 parent 0715528 commit 3b73bec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/commands/encointer_democracy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ pub fn vote(_args: &str, matches: &ArgMatches<'_>) -> Result<(), clap::Error> {
}),
)
.await;
let reputation_bvec = ReputationVec::<ConstU32<1024>>::try_from(reputation_vec);
let reputation_bvec = ReputationVec::<ConstU32<1024>>::try_from(reputation_vec).unwrap();

let tx_payment_cid_arg = matches.tx_payment_cid_arg();
set_api_extrisic_params_builder(&mut api, tx_payment_cid_arg).await;
Expand Down

0 comments on commit 3b73bec

Please sign in to comment.