我在docker-container中运行bitcoind:
Sub Macro1()
Dim rowIndex As Integer
Dim lastRowIndex As Integer
lastRowIndex = 15000
For rowIndex = 7 To lastRowIndex
If ActiveSheet.Rows(rowIndex).RowHeight < 10.8 Then
ActiveSheet.Rows(rowIndex).RowHeight = 10.8
End If
Next rowIndex
End Sub
我生成了101个块,目前我有50个平衡币。我想在我的考试中创建另一个钱包。为此,我在主机(Windows)上安装了Bitcoin Core。我将主机的18000端口映射到容器的18444端口,并使用以下参数运行Bitcoin Core:
bitcoind -datadir=/bitcoin -regtest -listen
在比特币核心中没有任何进展。日志中只有数千个字符串:
"C:\Program Files\Bitcoin\bitcoin-qt.exe" -connect=127.0.0.1:18000 -regtest
如果我重新启动Bitcoin Core,我会看到:“剩余的块数101”,但是没有进度,只有记录添加到日志中。
我做错了什么?