Regtest
執行 regtest 網路,bitcoin.conf 配置不正確?
這是我執行此命令後發生的情況
bitcoind --regtest --printtoconsole
,我的猜測是它與 bitcoin.conf 有關我的 bitcoin.conf 文件如下所示:
server=1 rpcuser=root rpcpassword=password rpcconnect=127.0.0.1 rpcport=8332
如果您需要更多上下文,這些是我的其他問題:bitcoin cli regtest和通過 docker與比特幣互動的問題
就這樣做…
要使用 bitcoind 和 bitcoin-cli,您需要將 RPC 密碼添加到您的 bitcoin.conf 文件。如果兩個程序都以同一個使用者在同一個系統上執行,則兩個程序將從同一個文件中讀取,因此任何長的隨機密碼都可以工作:
rpcpassword=change_this_to_a_long_random_password
將來我一定會RTFM