Skip to content

Commit 0fee2a2

Browse files
committed
params: Fix add_assets function signature
1 parent 01d94a1 commit 0fee2a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wallet/src/psbt/params.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl Params {
5757
///
5858
/// This may be called multiple times to add additional assets, however only the last
5959
/// absolute or relative timelock is retained. See also `AssetsExt`.
60-
pub fn add_assets<I, S>(&mut self, assets: Assets) -> &mut Self {
60+
pub fn add_assets(&mut self, assets: Assets) -> &mut Self {
6161
let mut new = match self.assets {
6262
Some(ref existing) => {
6363
let mut new = Assets::new();

0 commit comments

Comments
 (0)