From 47a7ada7e8f05e231a90954321d8d76545538e32 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 3 May 2016 23:06:57 -0400 Subject: [PATCH] Fix number of recovery shares output during init --- command/init.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/command/init.go b/command/init.go index 1f4cc6b2e..a839973de 100644 --- a/command/init.go +++ b/command/init.go @@ -92,8 +92,8 @@ func (c *InitCommand) Run(args []string) int { "\n"+ "Recovery key initialized with %d keys and a key threshold of %d. Please\n"+ "securely distribute the above keys.", - shares, - threshold, + recoveryShares, + recoveryThreshold, )) }