Skip to content

Commit

Permalink
Fix default config values
Browse files Browse the repository at this point in the history
  • Loading branch information
h4sh3d committed Nov 26, 2021
1 parent 91bc4e3 commit 61023c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,13 +83,13 @@ impl Default for Syncers {
Syncers {
mainnet: Some(SyncerServers {
electrum_server: FARCASTER_MAINNET_ELECTRUM_SERVER.into(),
monero_daemon: FARCASTER_MAINNET_ELECTRUM_SERVER.into(),
monero_rpc_wallet: FARCASTER_MAINNET_ELECTRUM_SERVER.into(),
monero_daemon: FARCASTER_MAINNET_MONERO_DAEMON.into(),
monero_rpc_wallet: FARCASTER_MAINNET_MONERO_RPC_WALLET.into(),
}),
testnet: Some(SyncerServers {
electrum_server: FARCASTER_TESTNET_ELECTRUM_SERVER.into(),
monero_daemon: FARCASTER_TESTNET_ELECTRUM_SERVER.into(),
monero_rpc_wallet: FARCASTER_TESTNET_ELECTRUM_SERVER.into(),
monero_daemon: FARCASTER_TESTNET_MONERO_DAEMON.into(),
monero_rpc_wallet: FARCASTER_TESTNET_MONERO_RPC_WALLET.into(),
}),
}
}
Expand Down

0 comments on commit 61023c8

Please sign in to comment.