From 93bc03cfe634a0e9b106f541605ca6dc36fb6b08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Drwi=C4=99ga?= Date: Thu, 25 Apr 2019 13:31:50 +0200 Subject: [PATCH] Allow localhost IP by default. (#2380) --- substrate/core/cli/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/substrate/core/cli/src/lib.rs b/substrate/core/cli/src/lib.rs index 296e8e3c3f..275399bdf3 100644 --- a/substrate/core/cli/src/lib.rs +++ b/substrate/core/cli/src/lib.rs @@ -483,7 +483,9 @@ where } else { Some(vec![ "http://localhost:*".into(), + "http://127.0.0.1:*".into(), "https://localhost:*".into(), + "https://127.0.0.1:*".into(), "https://polkadot.js.org".into(), "https://substrate-ui.parity.io".into(), ])