File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed
Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import (
1111
1212const (
1313 // Version information
14- VERSION = "0.2.1 "
14+ VERSION = "0.3.5 "
1515)
1616
1717func main () {
Original file line number Diff line number Diff line change @@ -33,18 +33,25 @@ import (
3333)
3434
3535const (
36- Version = "0.3.3 "
36+ Version = "0.3.5 "
3737 DefaultBackupPeriodSeconds = 300 // (5 minutes)
3838)
3939
4040func printBanner () {
41- banner := fmt .Sprintf (`
42- ╔══════════════════════════════════════════════════════════════╗
43- ║ MPCIUM v%s ║
44- ║ Multi-Party Computation Threshold Signatures Node ║
45- ╚══════════════════════════════════════════════════════════════╝
46- ` , Version )
47- fmt .Print (banner )
41+ c := "\033 [38;2;0;206;200m"
42+ d := "\033 [38;2;0;140;136m"
43+ r := "\033 [0m"
44+
45+ fmt .Printf (`
46+ %s __ __ ____ ____ ___ _ _ __ __
47+ | \/ | _ \ / ___|_ _| | | | \/ |
48+ | |\/| | |_) | | | || | | | |\/| |
49+ | | | | __/| |___ | || |_| | | | |
50+ |_| |_|_| \____|___|\___/|_| |_|
51+ %s Distributed MPC Node for Threshold Signatures v%s
52+ ──────────────────────────────────────────%s
53+
54+ ` , c , d , Version , r )
4855}
4956
5057func main () {
You can’t perform that action at this time.
0 commit comments