difftreelog
fmt
in: master
3 files changed
pallets/app-promotion/src/types.rsdiffbeforeafterboth--- a/pallets/app-promotion/src/types.rs
+++ b/pallets/app-promotion/src/types.rs
@@ -92,7 +92,7 @@
sponsor_id: Self::AccountId,
contract_address: Self::ContractId,
) -> DispatchResult;
-
+
/// Removes sponsor for a contract.
///
/// - `contract_address`: ID of the modified contract.
pallets/evm-contract-helpers/src/lib.rsdiffbeforeafterboth272272273 /// Force remove `sponsor` for `contract`.273 /// Force remove `sponsor` for `contract`.274 ///274 ///275 /// Differs from `remove_sponsor` in that 275 /// Differs from `remove_sponsor` in that276 /// it doesn't require consent from the `owner` of the contract.276 /// it doesn't require consent from the `owner` of the contract.277 pub fn force_remove_sponsor(contract_address: H160) -> DispatchResult {277 pub fn force_remove_sponsor(contract_address: H160) -> DispatchResult {278 Sponsoring::<T>::remove(contract_address);278 Sponsoring::<T>::remove(contract_address);pallets/unique/src/lib.rsdiffbeforeafterboth--- a/pallets/unique/src/lib.rs
+++ b/pallets/unique/src/lib.rs
@@ -1138,7 +1138,7 @@
///
/// Differs from `remove_sponsor` in that
/// it doesn't require consent from the `owner` of the collection.
- ///
+ ///
/// # Arguments
///
/// * `collection_id`: ID of the modified collection.