Open rgbetanco opened 6 years ago
blockchain-wallet-service version 0.26.1 nodejs version v8.11.2
php code
$url = "http://localhost:3001/api/v2/create"; $a = "password=123ascdefrvgtt2133ewdddweyyhhhg&api_code=bb795b17-5d4c-415d-8887-e522923dda97"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $a); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $ext_response = curl_exec($ch); curl_close($ch); return $ext_response'
The error that I get on the service is the following
warn: Created non-HD wallet, for privacy and security, it is recommended that new wallets are created with hd=true
and the return to the API is empty.
What am I doing wrong ? thanks
Nevermind, it is working now.
blockchain-wallet-service version 0.26.1 nodejs version v8.11.2
php code
$url = "http://localhost:3001/api/v2/create"; $a = "password=123ascdefrvgtt2133ewdddweyyhhhg&api_code=bb795b17-5d4c-415d-8887-e522923dda97"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $a); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $ext_response = curl_exec($ch); curl_close($ch); return $ext_response'
The error that I get on the service is the following
warn: Created non-HD wallet, for privacy and security, it is recommended that new wallets are created with hd=true
and the return to the API is empty.
What am I doing wrong ? thanks