Skip to content

Commit

Permalink
change banner
Browse files Browse the repository at this point in the history
  • Loading branch information
10to4 committed Jun 12, 2019
1 parent 44ce102 commit ffa5935
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
17 changes: 10 additions & 7 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,19 @@ func main() {
}
}

// SetupPOD setups api server and node.
// SetupPOD setups api server and node-
func SetupPOD() {

Log := Logger.NewSessionLogger()
fmt.Printf("██████╗ ██████╗ ██████╗ ███████╗██╗ ██╗\n")
fmt.Printf("██╔══██╗██╔═══██╗██╔══██╗██╔════╝╚██╗██╔╝\n")
fmt.Printf("██████╔╝██║ ██║██║ ██║█████╗ ╚███╔╝\n")
fmt.Printf("██╔═══╝ ██║ ██║██║ ██║██╔══╝ ██╔██╗\n")
fmt.Printf("██║ ╚██████╔╝██████╔╝███████╗██╔╝ ██╗\n")
fmt.Printf("╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝\n")
fmt.Printf(" ██╗ ████████╗ ████████╗ \n")
fmt.Printf(" ██║ ██╔════██╗ ██╔════███╗\n")
fmt.Printf("███████╗ ██║ ██╗ ██║ ██║ ███╗ ██║ ██║\n")
fmt.Printf("╚══███╔╝ ██║ ██╔╝ ████████╔╝ ██╔══██╗ ██║ ██║\n")
fmt.Printf(" ███╔╝ █████╔╝ ██╔═════╝ ██╔╝ ██║ ██║ ██║\n")
fmt.Printf(" ███╔╝ ██╔═██╗ ██║ ██╗ ██╔╝ ██║ ███╔╝\n")
fmt.Printf("███████╗ ██║ ██╗ ██║ ╚███╔═╝ ████████╔═╝\n")
fmt.Printf("╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚══╝ ╚═══════╝\n")

go SetupAPIServe(Log)
SetupNode(Log)
}
Expand Down
4 changes: 2 additions & 2 deletions seller_tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ func preSellerTx(mklroot string, re requestExtra, Log ILogger) (SellerConnParam,
extraPath := BConf.SellerDir + "/publish/" + mklroot + "/extra.json"
extra, err := readExtraFile(extraPath)
if err != nil {
Log.Warnf("failed to read bulletin. err=%v", err)
return params, re, fmt.Errorf("failed to read bulletin")
Log.Warnf("failed to extra file. err=%v", err)
return params, re, fmt.Errorf("failed to extra file")
}
Log.Debugf("read extra info...%v", extra)

Expand Down

0 comments on commit ffa5935

Please sign in to comment.