bitcoind: set default rpcuser

We're already setting a default rpcpassword, so we should set an
accompanying rpcuser so that rpc clients like electrs work out of the box.
This commit is contained in:
Erik Arvstedt
2020-03-04 18:09:52 +01:00
parent c4cf323873
commit 5596bcf4fb
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ in {
rpcuser = mkOption {
type = types.nullOr types.str;
default = null;
default = "bitcoinrpc";
description = "Username for JSON-RPC connections";
};
rpcpassword = mkOption {