Hello. I am currently coding a gui wallet for personal development, nothing serious. I am stuck at a problem and am hoping for someone to help me. To use LoaderService (or any other grpc service for that matter) the wallet process must be started with --experimental flag, however, dcrwallet process (that exposes grpc loaderservice) cannot be started unless wallet already exists. ./dcrwallet --experimentalrpclisten 127.0.0.1:9110 "The wallet does not exist. Run with the --create option to initialize and create it." TL;DR. To create a wallet I must use LoaderService, however, unless I already have a wallet I cannot use LoaderService. What am I missing here? Thanks.
I haven't personally tried it, but I suspect it is this flag based on reading the help: Code: $ dcrwallet -h ... --noinitialload Defer wallet creation/opening on startup and enable loading wallets over RPC ...