From 967135a3a6ee52bca7fd9b1a1c32ee55f69bfcd0 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Sun, 1 Mar 2026 22:52:56 -0700 Subject: [PATCH] minor bug in GenerateRandomConfirmationNumber - number range wasn't great enough --- util/random.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/random.go b/util/random.go index 2885574..f9f4409 100644 --- a/util/random.go +++ b/util/random.go @@ -51,7 +51,7 @@ var syllabary = [...]string{ } // RCN_BASE is the base for generating random confirmation numbers. -var RCN_BASE *big.Int = big.NewInt(900000) +var RCN_BASE *big.Int = big.NewInt(9000000) // RCN_OFFSET is what we add to a generated random number to get a proper confirmation number. const RCN_OFFSET = 1000000