php: fetch: gemini: update to ccxt's latest request() signature

The context argument was removed from upstream's signature.
This commit is contained in:
2024-06-21 17:54:29 -07:00
parent 0014440e38
commit c68c25dba4

View File

@@ -107,7 +107,7 @@ namespace docker_finance\exchanges\internal\exchanges\gemini
string $method = 'GET',
array $params = []
): mixed {
return $this->get_api()->request($path, $api, $method, $params, null, null, [], []);
return $this->get_api()->request($path, $api, $method, $params, null, null, []);
}
}