mirror of
https://github.com/aljazceru/lightning.git
synced 2025-12-19 15:14:23 +01:00
typo: information is an uncountable mass noun
See https://en.wikipedia.org/wiki/Information In libplugin.c also the word "details" was added (without removing the 'information'). Changelog-None
This commit is contained in:
committed by
Rusty Russell
parent
da2ee188f3
commit
1b02d15695
@@ -1422,7 +1422,7 @@ static void add_seed_addrs(struct wireaddr_internal **addrs,
|
|||||||
&a.u.wireaddr));
|
&a.u.wireaddr));
|
||||||
tal_arr_expand(addrs, a);
|
tal_arr_expand(addrs, a);
|
||||||
}
|
}
|
||||||
/* Other seeds will likely have the same informations. */
|
/* Other seeds will likely have the same information. */
|
||||||
return;
|
return;
|
||||||
} else
|
} else
|
||||||
status_peer_debug(id, "Could not resolve %s", hostnames[i]);
|
status_peer_debug(id, "Could not resolve %s", hostnames[i]);
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ You can use the `listfunds` command and take a ratio of `our_amount_msat` over
|
|||||||
`amount_msat`. Note that this doesn't account for the [channel reserve](https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md#rationale).
|
`amount_msat`. Note that this doesn't account for the [channel reserve](https://github.com/lightningnetwork/lightning-rfc/blob/master/02-peer-protocol.md#rationale).
|
||||||
|
|
||||||
A better option is to use the [`summary` plugin](https://github.com/lightningd/plugins/tree/master/summary)
|
A better option is to use the [`summary` plugin](https://github.com/lightningd/plugins/tree/master/summary)
|
||||||
which nicely displays channel balances, along with other useful channel informations.
|
which nicely displays channel balances, along with other useful channel information.
|
||||||
|
|
||||||
### My channel is in state `STATE`, what does that mean ?
|
### My channel is in state `STATE`, what does that mean ?
|
||||||
|
|
||||||
|
|||||||
@@ -492,7 +492,7 @@ void bitcoind_getchaininfo_(struct bitcoind *bitcoind,
|
|||||||
|
|
||||||
/* `getutxout`
|
/* `getutxout`
|
||||||
*
|
*
|
||||||
* Get informations about an UTXO. If the TXO is spent, the plugin will set
|
* Get information about an UTXO. If the TXO is spent, the plugin will set
|
||||||
* all fields to `null`.
|
* all fields to `null`.
|
||||||
* {
|
* {
|
||||||
* "amount": <The output's amount in *sats*>,
|
* "amount": <The output's amount in *sats*>,
|
||||||
|
|||||||
@@ -932,7 +932,7 @@ static const struct plugin_command commands[] = {
|
|||||||
{
|
{
|
||||||
"getutxout",
|
"getutxout",
|
||||||
"bitcoin",
|
"bitcoin",
|
||||||
"Get informations about an output, identified by a {txid} an a {vout}",
|
"Get information about an output, identified by a {txid} an a {vout}",
|
||||||
"",
|
"",
|
||||||
getutxout
|
getutxout
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ struct plugin {
|
|||||||
/* Synchronous RPC interaction */
|
/* Synchronous RPC interaction */
|
||||||
struct rpc_conn *rpc_conn;
|
struct rpc_conn *rpc_conn;
|
||||||
|
|
||||||
/* Plugin informations */
|
/* Plugin information details */
|
||||||
enum plugin_restartability restartability;
|
enum plugin_restartability restartability;
|
||||||
const struct plugin_command *commands;
|
const struct plugin_command *commands;
|
||||||
size_t num_commands;
|
size_t num_commands;
|
||||||
|
|||||||
Reference in New Issue
Block a user