Remove unused type parameter from broadcast07()

This commit is contained in:
Kitaiti Makoto 2022-04-24 05:47:11 +09:00
parent 174624f5c1
commit f14c307786
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ where
rt.run().unwrap();
}
pub fn broadcast07<S, T, A, K, C>(sender: &S, act: A, to: Vec<T>, proxy: Option<reqwest::Proxy>)
pub fn broadcast07<S, T, A, C>(sender: &S, act: A, to: Vec<T>, proxy: Option<reqwest::Proxy>)
where
S: sign::Signer,
A: Activity07 + serde::Serialize,