Skip to content

Commit 6d503e6

Browse files
authored
Merge branch 'master' into main
2 parents d4f2c0d + 75f9ac5 commit 6d503e6

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ biscuit keypair
293293
# alternatively, you can export just the private key
294294
biscuit keypair --only-private-key > private-key-file
295295
# and later derive the public key from it
296-
biscuit keypair --from-private-key-file private-key-file --only-public-key
296+
biscuit keypair --from-file private-key-file --only-public-key
297297
```
298298

299299
Save the private key in a secure way (e.g. in a secret manager).

src/test/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1280,8 +1280,8 @@ async fn open_channel_raw(
12801280
&& c.asset_id == asset_id.map(|id| id.to_string())
12811281
&& c.asset_local_amount == asset_amount
12821282
}) {
1283-
if let Some(funding_txid) = &channel.funding_txid {
1284-
let txout = _get_txout(funding_txid);
1283+
if let Some(txid) = &channel.funding_txid {
1284+
let txout = _get_txout(txid);
12851285
if !txout.is_empty() {
12861286
mine_n_blocks(false, 6);
12871287
channel_id = Some(channel.channel_id.clone());

0 commit comments

Comments
 (0)