diff --git a/doc/assumeutxo.md b/doc/assumeutxo.md index 4584eebf436..2b3f2bac471 100644 --- a/doc/assumeutxo.md +++ b/doc/assumeutxo.md @@ -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 diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index e57e461b29a..43d5dd46208 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -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 {