Skip to content

Commit 39b895f

Browse files
committed
fix(test): add remotes to fixtures
1 parent d5d036a commit 39b895f

7 files changed

+8
-8
lines changed

magicblock-config/tests/fixtures/02_defaults.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[accounts]
44

55
# devnet | mainnet/mainnet-beta | testnet | development/local | custom(url)
6-
remote = "devnet"
6+
remotes = ["devnet"]
77
# lifecycle: replica | programs-replica | ephemeral | offline
88
lifecycle = "programs-replica"
99

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Programs are automatically cloned from devnet.
22
# All others are expected to be there or need to be created as part of the transactions.
33
[accounts]
4-
remote = "devnet"
4+
remotes = ["devnet"]
55
lifecycle = "programs-replica"

magicblock-config/tests/fixtures/06_local-dev-with-programs.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Programs are automatically cloned from devnet.
22
# All others are expected to be there or need to be created as part of the transaction.
33
[accounts]
4-
remote = "devnet"
4+
remotes = ["devnet"]
55
lifecycle = "programs-replica"
66
# Have it check every 10 mins and since we don't expect to clone any
77
# delegated accounts it will do nothing anyways.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[accounts]
2-
remote = "http://localhost:8899"
2+
remotes = ["http://localhost:8899"]

magicblock-config/tests/fixtures/08_accounts-payer.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[accounts]
2-
remote = "devnet"
2+
remotes = ["devnet"]
33
lifecycle = "programs-replica"
44
payer = { init_sol = 2000 }
55

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[accounts]
2-
remote = ["http://localhost:8899", "ws://localhost:9001"]
2+
remotes = [["http://localhost:8899", "ws://localhost:9001"]]

magicblock-config/tests/fixtures/10_validator-base-fees.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[accounts]
2-
remote = "devnet"
2+
remotes = ["devnet"]
33
lifecycle = "programs-replica"
44

55
[rpc]
@@ -10,4 +10,4 @@ port = 8899
1010
millis_per_slot = 50
1111
base_fees = 1000
1212
fdqn = "magicblock.er.com"
13-
country_code = "US"
13+
country_code = "US"

0 commit comments

Comments
 (0)