-
Notifications
You must be signed in to change notification settings - Fork 64
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels