From 08b5b76887ae991ed3114f3a8c6493a22f86879d Mon Sep 17 00:00:00 2001 From: max furman Date: Tue, 28 Jan 2020 13:17:10 -0800 Subject: [PATCH] Use _'s in table names. --- acme/authority.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme/authority.go b/acme/authority.go index ddbc9213..286a7218 100644 --- a/acme/authority.go +++ b/acme/authority.go @@ -51,7 +51,7 @@ var ( challengeTable = []byte("acme_challenges") nonceTable = []byte("nonces") orderTable = []byte("acme_orders") - ordersByAccountIDTable = []byte("acme_account-orders-index") + ordersByAccountIDTable = []byte("acme_account_orders_index") certTable = []byte("acme_certs") )