Merge pull request #204 from filecoin-project/feat/no-https-yet

use http because i don't have a cert
This commit is contained in:
Whyrusleeping
2019-09-17 15:51:21 -07:00
committed by GitHub
+1 -1
View File
@@ -67,7 +67,7 @@ fetch_gateway() {
local dest="$1"
local cid="$2"
local url="https://198.211.99.118/ipfs/$cid"
local url="http://198.211.99.118/ipfs/$cid"
download "$url" "$dest"
}