Skip to content

Commit 32e022c

Browse files
authored
fix README: incomplete parameters for get_invoice (#27)
1 parent 7b6555b commit 32e022c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ let res = async_client.make_request(url).await.unwrap();
2727
2828
if let LnUrlPayResponse(pay) = res {
2929
let msats = 1_000_000;
30-
let pay_result = async_client.get_invoice(&pay, msats, None).await.unwrap();
30+
let pay_result = async_client.get_invoice(&pay, msats, None, None).await.unwrap();
3131
3232
let invoice = Bolt11Invoice::from_str(&pay_result.invoice()).unwrap();
3333

0 commit comments

Comments
 (0)