We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b36bca9 commit d9904c7Copy full SHA for d9904c7
payjoin-cli/src/app/v1.rs
@@ -104,9 +104,7 @@ impl App {
104
let pj_part = payjoin::Url::parse(pj_part)
105
.map_err(|e| anyhow!("Failed to parse pj_endpoint: {}", e))?;
106
107
- // None is needed for for the OhttpKeys because we fetch `payjoin-io` which fetch `v2`
108
- // feature from `payjoin` crate by default.
109
- let pj_uri = PjUriBuilder::new(pj_receiver_address, pj_part, None).amount(amount).build();
+ let pj_uri = PjUriBuilder::new(pj_receiver_address, pj_part).amount(amount).build();
110
111
Ok(pj_uri.to_string())
112
}
0 commit comments