Browse Source

转链

master
huangjiajun 5 months ago
parent
commit
d5802f87f7
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      chain_transfer/turn_chain.go

+ 9
- 0
chain_transfer/turn_chain.go View File

@@ -5,6 +5,7 @@ import (
"code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/db"
"code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/md"
zhios_third_party_utils "code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/utils"
"code.fnuoos.com/go_rely_warehouse/zyos_go_third_party_api.git/utils/cache"
"fmt"
"github.com/mvdan/xurls"
"regexp"
@@ -13,6 +14,14 @@ import (
"xorm.io/xorm"
)

func Init(redisAddr string) (err error) {
if redisAddr != "" {
cache.NewRedis(redisAddr)
}
_, err = cache.SelectDb(md.RedisDataBase)
return
}

func TurnChain(eg *xorm.Engine, officialEg, zhimengEg *xorm.Engine, args map[string]string) md.TCPrase {
dbName := args["master_id"]
var tcPrase md.TCPrase


Loading…
Cancel
Save