Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Commit 3a21820

Browse files
committed
Fix infra address in migration 16
1 parent 34aeab8 commit 3a21820

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repo/migrations/Migration016.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ func migration016DefaultWalletConfig() *Migration016WalletsConfig {
8484
},
8585
ETH: &migration016CoinConfig{
8686
Type: "API",
87-
APIPool: []string{"https://rinkeby.infura.io"},
87+
APIPool: []string{"https://mainnet.infura.io"},
8888
APITestnetPool: []string{"https://rinkeby.infura.io"},
8989
FeeAPI: "", // intentionally blank
9090
LowFeeDefault: 7,

repo/migrations/Migration016_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ func TestMigration016(t *testing.T) {
207207

208208
var re = regexp.MustCompile(`\s`)
209209
if re.ReplaceAllString(string(configBytes), "") != re.ReplaceAllString(string(postMigration016Config), "") {
210-
t.Logf("actual: %s", re.ReplaceAllString(string(configBytes), ""))
210+
t.Logf("actual: %s, expected %s", re.ReplaceAllString(string(configBytes), ""), re.ReplaceAllString(string(postMigration016Config), ""))
211211
t.Fatal("incorrect post-migration config")
212212
}
213213

0 commit comments

Comments
 (0)