mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 03:47:29 -03:00
doc: Add -rpcclienttimeout=0 to loadtxoutset examples
This commit is contained in:
parent
598b9bba5a
commit
c5eaae3b89
2 changed files with 2 additions and 2 deletions
|
@ -17,7 +17,7 @@ Once you've obtained the snapshot, you can use the RPC command `loadtxoutset` to
|
||||||
load it.
|
load it.
|
||||||
|
|
||||||
```
|
```
|
||||||
$ bitcoin-cli loadtxoutset /path/to/input
|
$ bitcoin-cli -rpcclienttimeout=0 loadtxoutset /path/to/input
|
||||||
```
|
```
|
||||||
|
|
||||||
After the snapshot has loaded, the syncing process of both the snapshot chain
|
After the snapshot has loaded, the syncing process of both the snapshot chain
|
||||||
|
|
|
@ -3005,7 +3005,7 @@ static RPCHelpMan loadtxoutset()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
RPCExamples{
|
RPCExamples{
|
||||||
HelpExampleCli("loadtxoutset", "utxo.dat")
|
HelpExampleCli("loadtxoutset -rpcclienttimeout=0", "utxo.dat")
|
||||||
},
|
},
|
||||||
[&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
|
[&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue