diff options
author | club-mate <spam@hensen.it> | 2011-07-31 04:12:02 +0200 |
---|---|---|
committer | club-mate <spam@hensen.it> | 2011-07-31 04:12:02 +0200 |
commit | 2dbf79c24b497da812db1e9b384f679df96712d3 (patch) | |
tree | 9db4e445f99e2e27ed5fb4c5cf64427baf7b59c9 | |
parent | b09847aae35f03ca12c74bc9905e88ddfd5c7856 (diff) |
mtgox: s/http/https/g
-rwxr-xr-x | mtgox/mtgox.getDepth | 2 | ||||
-rwxr-xr-x | mtgox/mtgox.getTrades | 2 | ||||
-rwxr-xr-x | mtgox/mtgox.ticker | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/mtgox/mtgox.getDepth b/mtgox/mtgox.getDepth index effc28a0..9a607979 100755 --- a/mtgox/mtgox.getDepth +++ b/mtgox/mtgox.getDepth @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox market depth -$ curl -ksS http://mtgox.com/code/data/getDepth.php +$ curl -ksS https://mtgox.com/code/data/getDepth.php diff --git a/mtgox/mtgox.getTrades b/mtgox/mtgox.getTrades index fd0d0ea9..73e5a68d 100755 --- a/mtgox/mtgox.getTrades +++ b/mtgox/mtgox.getTrades @@ -1,3 +1,3 @@ #! /bin/sh # get mtgox last trades -$ curl -ksS http://mtgox.com/code/data/getTrades.phl +$ curl -ksS https://mtgox.com/code/data/getTrades.phl diff --git a/mtgox/mtgox.ticker b/mtgox/mtgox.ticker index 54a150f0..b24dfb35 100755 --- a/mtgox/mtgox.ticker +++ b/mtgox/mtgox.ticker @@ -1,4 +1,4 @@ #! /bin/sh # get mtgox ticker data set -euf -curl -ksS http://mtgox.com/code/data/ticker.php +curl -ksS https://mtgox.com/code/data/ticker.php |