File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ biscuit keypair
293293# alternatively, you can export just the private key
294294biscuit 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
299299Save the private key in a secure way (e.g. in a secret manager).
Original file line number Diff line number Diff 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 ( ) ) ;
You can’t perform that action at this time.
0 commit comments