Skip to content
Snippets Groups Projects
Commit e47f3835 authored by Luke Schoen's avatar Luke Schoen Committed by Gav Wood
Browse files

fix: Fix typo in argument name (#935)

parent 583c24f0
No related merge requests found
......@@ -85,7 +85,7 @@ decl_module! {
fn configure(proposal_bond: Permill, proposal_bond_minimum: <T::Balance as HasCompact>::Type, spend_period: <T::BlockNumber as HasCompact>::Type, burn: Permill) -> Result;
// Reject a proposed spend. The original deposit will be slashed.
fn reject_proposal(origin, roposal_id: Compact<ProposalIndex>) -> Result;
fn reject_proposal(origin, proposal_id: Compact<ProposalIndex>) -> Result;
// Approve a proposal. At a later time, the proposal will be allocated to the beneficiary
// and the original deposit will be returned.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment