Skip to content

Commit 1a45cd2

Browse files
committed
contrib/signet: Fix typos
Thanks to muxator, JeremyRubin, and gruve-p for spotting.
1 parent 6c61408 commit 1a45cd2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contrib/signet/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ To mine the first block in your custom chain, you can run:
2525

2626
cd src/
2727
CLI="./bitcoin-cli -conf=mysignet.conf"
28-
MINER="..contrib/signet/miner"
28+
MINER="../contrib/signet/miner"
2929
GRIND="./bitcoin-util grind"
3030
ADDR=$($CLI -signet getnewaddress)
3131
$MINER --cli="$CLI" generate --grind-cmd="$GRIND" --address="$ADDR" --set-block-time=-1
@@ -52,7 +52,7 @@ Instead of specifying --ongoing, you can specify --max-blocks=N to mine N blocks
5252

5353
Instead of using a single address, a ranged descriptor may be provided instead (via the --descriptor parameter), with the reward for the block at height H being sent to the H'th address generated from the descriptor.
5454

55-
Instead of calculating a specific nbits value, --min-nbits can be specified instead, in which case the mininmum signet difficulty will be targeted.
55+
Instead of calculating a specific nbits value, --min-nbits can be specified instead, in which case the minimum signet difficulty will be targeted.
5656

5757
By default, the signet miner mines blocks at fixed intervals with minimal variation. If you want blocks to appear more randomly, as they do in mainnet, specify the --poisson option.
5858

contrib/signet/miner

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,7 @@ def do_calibrate(args):
520520
sys.stderr.write("Can only specify one of --nbits or --seconds\n")
521521
return 1
522522
if args.nbits is not None and len(args.nbits) != 8:
523-
sys.stderr.write("Must specify 8 hex digits for --nbits")
523+
sys.stderr.write("Must specify 8 hex digits for --nbits\n")
524524
return 1
525525

526526
TRIALS = 600 # gets variance down pretty low

0 commit comments

Comments
 (0)