Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Rename WS_RPC_ADDRESS -> WS_RPC_ADDR
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioberger committed Jan 24, 2020
1 parent 1a94435 commit e86bf17
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ variables.


```
WS_RPC_ADDRESS=ws://167.71.80.233:60557 go run ./examples/go/subscribe-to-orders/main.go
WS_RPC_ADDR=ws://167.71.80.233:60557 go run ./examples/go/subscribe-to-orders/main.go
```

### More Information
Expand Down
2 changes: 1 addition & 1 deletion examples/go/add-order/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (

type clientEnvVars struct {
// RPCAddress is the address of the 0x Mesh node to communicate with.
WSRPCAddress string `envvar:"WS_RPC_ADDRESS"`
WSRPCAddress string `envvar:"WS_RPC_ADDR"`
// EthereumRPCURL is the URL of an Etheruem node which supports the JSON RPC
// API.
EthereumRPCURL string `envvar:"ETHEREUM_RPC_URL"`
Expand Down
2 changes: 1 addition & 1 deletion examples/go/subscribe-to-orders/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (

type clientEnvVars struct {
// RPCAddress is the address of the 0x Mesh node to communicate with.
WSRPCAddress string `envvar:"WS_RPC_ADDRESS"`
WSRPCAddress string `envvar:"WS_RPC_ADDR"`
}

func main() {
Expand Down

0 comments on commit e86bf17

Please sign in to comment.