From 7f971fb72bf6cceb3a0309294c37f5abce6fbbe9 Mon Sep 17 00:00:00 2001 From: Mikelle Date: Wed, 31 Mar 2021 19:11:07 +0300 Subject: [PATCH] changed const declaration in api_test.go --- api/api_test.go | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/api/api_test.go b/api/api_test.go index 1b0f5f0..37d681e 100644 --- a/api/api_test.go +++ b/api/api_test.go @@ -40,9 +40,11 @@ type Pendinger interface { New() Pendinger } -const apiPort = "4010" -const apiIP = "http://localhost:" -const apiURL = apiIP + apiPort + "/v1/" +const ( + apiPort = "4010" + apiIP = "http://localhost:" + apiURL = apiIP + apiPort + "/v1/" +) var SetBlockchain = ` Type: Blockchain