Skip to content

Commit 0b01014

Browse files
authored
Merge pull request #326 from poiati/paulo/fix-http-endpoints
remove '/' from the end of the rest access URI
2 parents 83dd12a + 6c81a57 commit 0b01014

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

access/http/client.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ import (
2828

2929
const (
3030
EmulatorHost = "http://127.0.0.1:8888/v1"
31-
TestnetHost = "https://rest-testnet.onflow.org/v1/"
32-
MainnetHost = "https://rest-mainnet.onflow.org/v1/"
33-
CanarynetHost = "https://rest-canary.onflow.org/v1/"
31+
TestnetHost = "https://rest-testnet.onflow.org/v1"
32+
MainnetHost = "https://rest-mainnet.onflow.org/v1"
33+
CanarynetHost = "https://rest-canary.onflow.org/v1"
3434
)
3535

3636
// NewClient creates an HTTP client exposing all the common access APIs.

0 commit comments

Comments
 (0)