Closed
Description
We use both wget and curl in "t0110-gateway.sh" and we also use curl in "t0111-gateway-writable.sh".
Maybe we could get rid of wget and use only curl.
In test/sharness/Makefile there is also:
# will fail if curl is not installed.
# TODO: get rid of this and install curl with git or ipfs.
install_curl_pls = "curl is required to run tests. please install it"
curl:
@which curl >/dev/null || (echo "$(install_curl_pls)" && false)
but I wonder if we could use something like https://github.com/christophwitzko/go-curl instead.