From e47f3835fd165e46042d89c04b26bdf97938857a Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Sat, 20 Oct 2018 12:43:20 +0200 Subject: [PATCH] fix: Fix typo in argument name (#935) --- substrate/srml/treasury/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/srml/treasury/src/lib.rs b/substrate/srml/treasury/src/lib.rs index ae8aa9ceec..febe5fed89 100644 --- a/substrate/srml/treasury/src/lib.rs +++ b/substrate/srml/treasury/src/lib.rs @@ -85,7 +85,7 @@ decl_module! { fn configure(proposal_bond: Permill, proposal_bond_minimum: ::Type, spend_period: ::Type, burn: Permill) -> Result; // Reject a proposed spend. The original deposit will be slashed. - fn reject_proposal(origin, roposal_id: Compact) -> Result; + fn reject_proposal(origin, proposal_id: Compact) -> Result; // Approve a proposal. At a later time, the proposal will be allocated to the beneficiary // and the original deposit will be returned.