Skip to content

Commit

Permalink
doc: Add -rpcclienttimeout=0 to loadtxoutset examples
Browse files Browse the repository at this point in the history
  • Loading branch information
fjahr committed Sep 4, 2024
1 parent 598b9bb commit c5eaae3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/assumeutxo.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Once you've obtained the snapshot, you can use the RPC command `loadtxoutset` to
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
Expand Down
2 changes: 1 addition & 1 deletion src/rpc/blockchain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3005,7 +3005,7 @@ static RPCHelpMan loadtxoutset()
}
},
RPCExamples{
HelpExampleCli("loadtxoutset", "utxo.dat")
HelpExampleCli("loadtxoutset -rpcclienttimeout=0", "utxo.dat")
},
[&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
{
Expand Down

0 comments on commit c5eaae3

Please sign in to comment.