From af2abaee096b9d1258057671215e7be7d026f197 Mon Sep 17 00:00:00 2001 From: wxj Date: Mon, 29 Jun 2026 16:43:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=EF=BC=9A=E7=B3=BB=E7=BB=9F?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E6=94=B9=E4=B8=BA=20TuringToken?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/constants.go | 2 +- web/src/helpers/utils.jsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/constants.go b/common/constants.go index c0c3e34..c977ae7 100644 --- a/common/constants.go +++ b/common/constants.go @@ -12,7 +12,7 @@ import ( var StartTime = time.Now().Unix() // unit: second var Version = "v0.0.0" // this hard coding will be replaced automatically when building, no need to manually change -var SystemName = "TokenFactory" +var SystemName = "TuringToken" var Footer = "" var Logo = "" var TopUpLink = "" diff --git a/web/src/helpers/utils.jsx b/web/src/helpers/utils.jsx index 455c668..e75e9d3 100644 --- a/web/src/helpers/utils.jsx +++ b/web/src/helpers/utils.jsx @@ -143,7 +143,7 @@ export function parseCommissionPercentStringToBps(s) { export function getSystemName() { let system_name = localStorage.getItem('system_name'); - if (!system_name) return '词元工厂'; + if (!system_name) return 'TuringToken'; return system_name; }