From 4372e7e096453d1f805bb057f094db6d3eb138f4 Mon Sep 17 00:00:00 2001 From: Rico Date: Mon, 1 Aug 2022 15:02:40 +0800 Subject: [PATCH] graphql-server: Update eip4361 abnf spelling for LikeCoin refs #328 --- graphql-server/pkg/abnf/eip4361.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graphql-server/pkg/abnf/eip4361.go b/graphql-server/pkg/abnf/eip4361.go index 61d4b904..7892a350 100644 --- a/graphql-server/pkg/abnf/eip4361.go +++ b/graphql-server/pkg/abnf/eip4361.go @@ -19,7 +19,7 @@ const ( // https://eips.ethereum.org/EIPS/eip-4361 -// domain %s" wants you to sign in with your Likecoin account:" LF +// domain %s" wants you to sign in with your LikeCoin account:" LF // address LF // LF // [ statement LF ] @@ -36,7 +36,7 @@ const ( // resources ] func AuthenticationMessage() abnf.Rule { return abnf.C( - abnf.K(Authority(), AuthorityFQDN), abnf.SP(), abnf.VS("wants you to sign in with your Likecoin account:"), abnf.LF(), + abnf.K(Authority(), AuthorityFQDN), abnf.SP(), abnf.VS("wants you to sign in with your LikeCoin account:"), abnf.LF(), abnf.K(_address(), AddressFQDN), abnf.LF(), abnf.LF(), abnf.O(abnf.C(abnf.K(_statement(), StatementFQDN), abnf.LF())),