From 483b589eebcb71f5abe2dd5dca95ebb15ed2dcc3 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Mon, 29 Apr 2019 09:02:50 +0000 Subject: [PATCH] Fix keypool refill instructions in docs --- docs/bitcoin-core-usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bitcoin-core-usage.md b/docs/bitcoin-core-usage.md index 132e18b..2de5463 100644 --- a/docs/bitcoin-core-usage.md +++ b/docs/bitcoin-core-usage.md @@ -286,7 +286,7 @@ e51392c82e13bbfe714c73361aff14ac1a1637abf37587a562844ae5a4265adf When the keypools run out, they can be refilled by using the `getkeypool` commands as done in the beginning, but with different starting and ending indexes. For example, to refill my keypools, I would use the following `getkeypool` commands: ``` -$ ./hwi.py -f 8038ecd9 getkeypool --wpkh --keypool --internal 1000 2000 +$ ./hwi.py -f 8038ecd9 getkeypool --wpkh --keypool 1000 2000 $ ./hwi.py -f 8038ecd9 getkeypool --wpkh --keypool --internal 1000 2000 ``` The output can be imported with `importmulti` as shown in the Setup steps.