You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into problems with the curl driver.
I iterate through some addresses and fire the 'getreceivedbyaddress' command. The first address gave me the correct output but as soon as I get to the second address I get:
[ErrorException]
curl_close(): supplied resource is not a valid cURL handle resource
[ErrorException]
curl_setopt_array(): supplied resource is not a valid cURL handle resource
I commented the following line from the destructor and then everything works like a charm.
public function __destruct()
{
if (null !== self::$ch) {
// curl_close(self::$ch);
}
}
obvious I can also set self::$ch to null...
I do not understand why this is. curl_close always throws this exception after the first command. No matter when I call it. any clue?
The text was updated successfully, but these errors were encountered:
Got the same error with the same line of code, but I recognized two different behaviors.
I created a service to get the balance related to an account. If I call the service ...
... direct from a controller -> it works pretty good
... within another function of the same serviceclass -> curl_close(): supplied resource is not a valid cURL handle resource
I ran into problems with the curl driver.
I iterate through some addresses and fire the 'getreceivedbyaddress' command. The first address gave me the correct output but as soon as I get to the second address I get:
[ErrorException]
curl_close(): supplied resource is not a valid cURL handle resource
[ErrorException]
curl_setopt_array(): supplied resource is not a valid cURL handle resource
I commented the following line from the destructor and then everything works like a charm.
public function __destruct()
{
if (null !== self::$ch) {
// curl_close(self::$ch);
}
}
obvious I can also set self::$ch to null...
I do not understand why this is. curl_close always throws this exception after the first command. No matter when I call it. any clue?
The text was updated successfully, but these errors were encountered: