Skip to content

Commit

Permalink
style: rename MONERO_DAEMON_RPC_URL env to MONERO_DAEMON_URL
Browse files Browse the repository at this point in the history
  • Loading branch information
chekist32 committed Sep 9, 2024
1 parent d53f713 commit be36927
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
test:
runs-on: ubuntu-latest
env:
MONERO_DAEMON_RPC_ADDRESS: ${{ vars.DAEMON_URL }}
MONERO_DAEMON_URL: ${{ vars.DAEMON_URL }}
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion test/integration/.env-test.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MONERO_DAEMON_RPC_ADDRESS=http://localhost:18081
MONERO_DAEMON_URL=http://localhost:18081
2 changes: 1 addition & 1 deletion test/integration/daemon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func initSimpleDaemonRpcClient(t *testing.T) daemon.IDaemonRpcClient {
}

func initDaemonRpcClientWithCreds(t *testing.T, username, password string) daemon.IDaemonRpcClient {
u, err := getUrlFromEnv("MONERO_DAEMON_RPC_ADDRESS")
u, err := getUrlFromEnv("MONERO_DAEMON_URL")
if err != nil {
t.Fatal(err)
}
Expand Down

0 comments on commit be36927

Please sign in to comment.