Browse Source

changed const declaration in api_test.go

develop^2
Mikelle 3 years ago
parent
commit
7f971fb72b
1 changed files with 5 additions and 3 deletions
  1. +5
    -3
      api/api_test.go

+ 5
- 3
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

Loading…
Cancel
Save