Fix wallet creation in contrib/startup_regtest.sh

This commit is contained in:
Alexey Zagarin 2021-03-13 10:05:40 +07:00 committed by Rusty Russell
parent 8182e9cea4
commit 43c46ceb2d
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ start_ln() {
# Kick it out of initialblockdownload if necessary
if bitcoin-cli -regtest getblockchaininfo | grep -q 'initialblockdownload.*true'; then
# Modern bitcoind needs createwallet
bt-cli createwallet default >/dev/null 2>&1
bitcoin-cli -regtest createwallet default >/dev/null 2>&1
bitcoin-cli -regtest generatetoaddress 1 "$(bitcoin-cli -regtest getnewaddress)" > /dev/null
fi
alias bt-cli='bitcoin-cli -regtest'