Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Sep 25, 2023
1 parent d3d3fe1 commit fb834cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion substrate/frame/bounties/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,10 @@ pub mod pallet {
bounty.status =
BountyStatus::Active { curator: curator.clone(), update_due };

Self::deposit_event(Event::<T, I>::CuratorAccepted { bounty_id, curator: signer });
Self::deposit_event(Event::<T, I>::CuratorAccepted {
bounty_id,
curator: signer,
});
Ok(())
},
_ => Err(Error::<T, I>::UnexpectedStatus.into()),
Expand Down

0 comments on commit fb834cf

Please sign in to comment.