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

@@ -147,15 +147,15 @@ Examples:
* Create a new wallet stateless (first run):
```shell
lncli create --stateless_init --save_to=/safe/location/admin.macaroon
$ lncli create --stateless_init --save_to=/safe/location/admin.macaroon
```
* Unlock a wallet that has previously been initialized stateless:
```shell
lncli unlock --stateless_init
$ lncli unlock --stateless_init
```
* Use the created macaroon:
```shell
lncli --macaroonpath=/safe/location/admin.macaroon getinfo
$ lncli --macaroonpath=/safe/location/admin.macaroon getinfo
```
## Using Macaroons with GRPC clients
@@ -174,7 +174,7 @@ Where `<macaroon>` is the hex encoded binary data from the macaroon file itself.
A very simple example using `curl` may look something like this:
```shell
curl --insecure --header "Grpc-Metadata-macaroon: $(xxd -ps -u -c 1000 $HOME/.lnd/data/chain/bitcoin/simnet/admin.macaroon)" https://localhost:8080/v1/getinfo
$ curl --insecure --header "Grpc-Metadata-macaroon: $(xxd -ps -u -c 1000 $HOME/.lnd/data/chain/bitcoin/simnet/admin.macaroon)" https://localhost:8080/v1/getinfo
```
Have a look at the [Java GRPC example](/docs/grpc/java.md) for programmatic usage details.