chore: http, not https

This commit is contained in:
Jude Nelson
2022-12-16 02:04:48 -05:00
parent f78f7978b8
commit ccc55ebe1f

View File

@@ -269,7 +269,7 @@ pub fn new_test_conf() -> Config {
let localhost = "127.0.0.1";
conf.node.rpc_bind = format!("{}:{}", localhost, rpc_port);
conf.node.p2p_bind = format!("{}:{}", localhost, p2p_port);
conf.node.data_url = format!("https://{}:{}", localhost, rpc_port);
conf.node.data_url = format!("http://{}:{}", localhost, rpc_port);
conf.node.p2p_address = format!("{}:{}", localhost, p2p_port);
conf
}