diff --git a/src/config/config.local.ts b/src/config/config.local.ts index 01392c4d3..01a74ab0a 100644 --- a/src/config/config.local.ts +++ b/src/config/config.local.ts @@ -13,7 +13,7 @@ export default { '/dns4/seed3.pos.nimiq-testnet.com/tcp/8443/wss', '/dns4/seed4.pos.nimiq-testnet.com/tcp/8443/wss', ], - disableNetworkInteraction: true, + disableNetworkInteraction: false, faucetEndpoint: 'https://faucet.pos.nimiq-testnet.com', reportToSentry: false, enableBitcoin: true, diff --git a/src/config/config.mainnet.ts b/src/config/config.mainnet.ts index f5ebd4876..2c9cdcf3a 100644 --- a/src/config/config.mainnet.ts +++ b/src/config/config.mainnet.ts @@ -23,7 +23,7 @@ export default { '/dns4/vortex.seed.nimiq.cloud/tcp/443/wss', '/dns4/zenith.seed.nimiq.systems/tcp/443/wss', ], - disableNetworkInteraction: true, + disableNetworkInteraction: false, faucetEndpoint: '', reportToSentry: true, enableBitcoin: true, diff --git a/src/config/config.testnet.ts b/src/config/config.testnet.ts index d15237b81..77287a6ef 100644 --- a/src/config/config.testnet.ts +++ b/src/config/config.testnet.ts @@ -13,7 +13,7 @@ export default { '/dns4/seed3.pos.nimiq-testnet.com/tcp/8443/wss', '/dns4/seed4.pos.nimiq-testnet.com/tcp/8443/wss', ], - disableNetworkInteraction: true, + disableNetworkInteraction: false, faucetEndpoint: 'https://faucet.pos.nimiq-testnet.com', reportToSentry: true, enableBitcoin: true,