scripted-diff: replace ⛰ emoji with $ [skip ci]

-BEGIN VERIFY SCRIPT-
sed -i 's/⛰/$/g' $(git grep -l '⛰')
-END VERIFY SCRIPT-
This commit is contained in:
habibitcoin
2022-10-28 12:06:35 -04:00
parent e7f4b183ae
commit 0b1e881d18
36 changed files with 239 additions and 239 deletions

View File

@@ -45,7 +45,7 @@ Retrieving information about your towers configurations can be done using
`lncli tower info`:
```shell
lncli tower info
$ lncli tower info
{
"pubkey": "03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63",
"listeners": [
@@ -60,7 +60,7 @@ The entire set of watchtower configuration options can be found using
`lnd -h`:
```shell
lnd -h
$ lnd -h
...
watchtower:
--watchtower.active If the watchtower should be active or not
@@ -88,7 +88,7 @@ Additionally, users can specify their towers external IP address(es) using
(pubkey@host:port) over RPC or `lncli tower info`:
```shell
lncli tower info
$ lncli tower info
...
"uris": [
"03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@1.2.3.4:9911"
@@ -99,7 +99,7 @@ The watchtower's URIs can be given to clients in order to connect and use the
tower with the following command:
```shell
lncli wtclient add 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@1.2.3.4:9911
$ lncli wtclient add 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@1.2.3.4:9911
```
If the watchtower's clients will need remote access, be sure to either:
@@ -113,13 +113,13 @@ Watchtowers have tor hidden service support and can automatically generate a
hidden service on startup with the following flags:
```shell
lnd --tor.active --tor.v3 --watchtower.active
$ lnd --tor.active --tor.v3 --watchtower.active
```
The onion address is then shown in the "uris" field when queried with `lncli tower info`:
```shell
lncli tower info
$ lncli tower info
...
"uris": [
"03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@bn2kxggzjysvsd5o3uqe4h7655u7v2ydhxzy7ea2fx26duaixlwuguad.onion:9911"
@@ -150,13 +150,13 @@ In order to set up a watchtower client, youll need two things:
1. The watchtower client must be enabled with the `--wtclient.active` flag.
```shell
lnd --wtclient.active
$ lnd --wtclient.active
```
2. The watchtower URI of an active watchtower.
```shell
lncli wtclient add 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@1.2.3.4:9911
$ lncli wtclient add 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63@1.2.3.4:9911
```
Multiple watchtowers can be configured through this method.
@@ -181,7 +181,7 @@ determine whether it is currently being used for backups through the
`active_session_candidate` value.
```shell
lncli wtclient tower 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
$ lncli wtclient tower 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
{
"pubkey": "03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63",
"addresses": [
@@ -197,7 +197,7 @@ To obtain information about the watchtower's sessions, users can use the
`--include_sessions` flag.
```shell
lncli wtclient tower --include_sessions 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
$ lncli wtclient tower --include_sessions 03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63
{
"pubkey": "03281d603b2c5e19b8893a484eb938d7377179a9ef1a6bca4c0bcbbfc291657b63",
"addresses": [
@@ -220,7 +220,7 @@ The entire set of watchtower client configuration options can be found with
`lncli wtclient -h`:
```shell
lncli wtclient -h
$ lncli wtclient -h
NAME:
lncli wtclient - Interact with the watchtower client.