Skip to content

Commit c5eaae3

Browse files
committed
doc: Add -rpcclienttimeout=0 to loadtxoutset examples
1 parent 598b9bb commit c5eaae3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/assumeutxo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Once you've obtained the snapshot, you can use the RPC command `loadtxoutset` to
1717
load it.
1818

1919
```
20-
$ bitcoin-cli loadtxoutset /path/to/input
20+
$ bitcoin-cli -rpcclienttimeout=0 loadtxoutset /path/to/input
2121
```
2222

2323
After the snapshot has loaded, the syncing process of both the snapshot chain

src/rpc/blockchain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3005,7 +3005,7 @@ static RPCHelpMan loadtxoutset()
30053005
}
30063006
},
30073007
RPCExamples{
3008-
HelpExampleCli("loadtxoutset", "utxo.dat")
3008+
HelpExampleCli("loadtxoutset -rpcclienttimeout=0", "utxo.dat")
30093009
},
30103010
[&](const RPCHelpMan& self, const JSONRPCRequest& request) -> UniValue
30113011
{

0 commit comments

Comments
 (0)