-
Notifications
You must be signed in to change notification settings - Fork 403
Description
Hi, I have installed Qtum core (version 23.0.0) for Windows 10, and I run full node in my PC, it took quite some time to fully synchorized with the testnet pairs.
However, I found I need to run some qtum-cli command, like: 'getcontractinfo', which is not available for qutm-qt.
So I I find the qtum.conf file, like this:
: [test]
testnet=1
server=1
logevents=1
rpcuser=qtum
rpcpassword=testnet
rpcport=13889
rpcallowip=127.0.0.1
txindex=1
addressindex=1
timestampindex=1
spentindex=1
test.datadir=F:\Temp\Qtum\testnet3
Then I tried to launch qtumd.exe to load the config file:
qtumd.exe -conf=F:\Temp\Qtum\qtum.conf; I can see the qtumd is running, but I see that qtumd is doing the synchronization again, which take quite some time.
Is there any way I can let qtumd not to do this again with some change in config file?