From 590a26d2b5cace1f415824ad8c36aac306734bb1 Mon Sep 17 00:00:00 2001 From: Xavier Perret <xa.perret@outlook.com> Date: Sun, 30 Oct 2022 17:49:52 +0100 Subject: [PATCH] print function --- app/utilities/utilities.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/utilities/utilities.go b/app/utilities/utilities.go index 3607d3e..f745f95 100644 --- a/app/utilities/utilities.go +++ b/app/utilities/utilities.go @@ -125,3 +125,9 @@ func RandomString() string { r := rand.New(rand.NewSource(time.Now().UnixNano())) return strconv.Itoa(r.Int()) } + +func PrintTransactionDoneMessage() { + fmt.Println("***********************************") + fmt.Println("All transactions have been received") + fmt.Println("***********************************") +} -- GitLab