Show Posts
|
Pages: [1] 2 »
|
When the circulating supply increases, we can say "new bitcoins were mined"?
To have it clear, new bitcoins are created or we "discover/found" it?
|
|
|
I downgraded to 13.12 but I still can't mine, I tried with a lot of versions.
|
|
|
I was mining DGB on my pc using sgminer 5.6.1 and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool. http://imgur.com/a/K86jYScreenshot http://imgur.com/a/K86jYI noticed that WU is 0.000/m all time, It was on 0.05 before. I'm using an AMD Radeon R7 Series How I can fix it?
|
|
|
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool. http://imgur.com/a/K86jYScreenshot http://imgur.com/a/K86jYI noticed that WU is 0.000/m all time, It was on 0.05 before. I'm using an AMD Radeon R7 Series How I can fix it?
|
|
|
Hello, I was mining DGB on my pc and everything was fine, but I decided to install Crimson 15.12 driver and now the miner doesn't send any share to pool.  Screenshot http://imgur.com/a/K86jYI noticed that WU is 0.000/m all time, It was on 0.05 before. I'm using an AMD Radeon R7 Series How I can fix it?
|
|
|
You need to log the actual error, probably a setting in PHP so you see what the 'internal error' is, not just that one exists. From there it'll make it a lot easier to find what's going wrong.
The error says Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
|
|
|
Hello, I want to make API calls to my Bitcoin Core wallet from my webpage but when I try to connect it gives me Internal Server ErrorI'm using easybitcoin.php JSON from https://github.com/aceat64/EasyBitcoin-PHP I'm trying with this JSON RPC call: <?php require_once('easybitcoin.php'); $bitcoin = new Bitcoin('myusername','mypassword','myip','8332'); $bitcoin->getinfo(); ?>
My bitcoin.conf file has: listen=1 maxconnections=15 server=1 daemon=1 rpcuser=myusername rpcpassword=mypassword rpcclienttimeout=60 rpcport=8332 rpcallowip=0.0.0.0/0 (Before I put my IP address here but it didn't solve too) When I use bitcoin-cli.exe client to send commands to my Bitcoin Core server via 127.0.0.1 (localhost) it works perfectly. What I'm doing wrong?
|
|
|
If Satoshi is just one person I'm not surprised that he doesn't want to reveal his identity. Besides some fame and glory this would probably give him a lot of troubles. So, we will probably never know his true identity and he will enjoy the fortune and fruits of his work in secrecy. Good for him.
By being one of the first people to think about a crypto-currency concept it doesn't mean he will make a fortune with that. It's like if we will call China as a "paper potency" only because they invented the paper. Satoshi Nakamoto are all the Bitcoin developers. But if you want names Dorian Nakamoto and Hal Finney are the possible ones. If he reveals his identity he would be the Tesla of the 21st Century (Government would be against him).
|
|
|
how can I setup and where can i found this cryptocoin daemon? I don't know how can I do it: Download your cryptocoin daemon, setup JSON RPC values in your config and add: txindex = 1 Run your daemon with -reindex and -server arguments it must be on serwer together with this scrpit?? any help ?  txindex = 1 is literaly a config found in your bitcoin.conf (by default it's not added and you have to add it) By default, Bitcoin Core builds a database containing only the transactions related to the user’s wallet. If you want to be able to access any transaction with commands like gettransaction, you need to configure Bitcoin Core to build a complete transaction index, which can be achieved with the txindex option. Set txindex=1 in the Bitcoin Core configuration file (usually found in your home directory under .bitcoin/bitcoin.conf). Once you change this parameter, you need to restart bitcoind and wait for it to rebuild the index. When you add txindex = 1, automatically the next time that you open Bitcoin Core (or the daemon client that you're using) it will ask for a reindex wich will take a lot of time but you will be able to use txindex.
|
|
|
Of course, my config.php is fine, sorry I forgot to put the ending on the post. <?php $rpc = array( 'login' => 'mywalletID', 'password' => 'mypassword', 'ip' => 'rpc.blockchain.info', 'port' => '80' ); ?> I have tried with: <?php $ip = gethostbyname('rpc.blockchain.info');
echo $ip;
?> to get the DNS from the rpc.blockchain.info domain, but it doesn't solve it either. I'm using this jsonRPCClient.php version: <?php /* COPYRIGHT Copyright 2007 Sergio Vaccaro <sergio@inservibile.org> This file is part of JSON-RPC PHP. JSON-RPC PHP is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. JSON-RPC PHP is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with JSON-RPC PHP; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ /** * The object of this class are generic jsonRPC 1.0 clients * http://json-rpc.org/wiki/specification * * @author sergio <jsonrpcphp@inservibile.org> */ class jsonRPCClient { /** * Debug state * * @var boolean */ private $debug; /** * The server URL * * @var string */ private $url; /** * The request id * * @var integer */ private $id; /** * If true, notifications are performed instead of requests * * @var boolean */ private $notification = false; /** * Takes the connection parameters * * @param string $url * @param boolean $debug */ public function __construct($url,$debug = false) { // server URL $this->url = $url; // proxy empty($proxy) ? $this->proxy = '' : $this->proxy = $proxy; // debug state empty($debug) ? $this->debug = false : $this->debug = true; // message id $this->id = 1; } /** * Sets the notification state of the object. In this state, notifications are performed, instead of requests. * * @param boolean $notification */ public function setRPCNotification($notification) { empty($notification) ? $this->notification = false : $this->notification = true; } /** * Performs a jsonRCP request and gets the results as an array * * @param string $method * @param array $params * @return array */ public function __call($method,$params) { // check if (!is_scalar($method)) { throw new Exception('Method name has no scalar value'); } // check if (is_array($params)) { // no keys $params = array_values($params); } else { throw new Exception('Params must be given as array'); } // sets notification or request task if ($this->notification) { $currentId = NULL; } else { $currentId = $this->id; } // prepares the request $request = array( 'method' => $method, 'params' => $params, 'id' => $currentId ); $request = json_encode($request); $this->debug && $this->debug.='***** Request *****'."\n".$request."\n".'***** End Of request *****'."\n\n"; // performs the HTTP POST $opts = array ('http' => array ( 'method' => 'POST', 'header' => 'Content-type: application/json', 'content' => $request )); $context = stream_context_create($opts); if ($fp = fopen($this->url, 'r', false, $context)) { $response = ''; while($row = fgets($fp)) { $response.= trim($row)."\n"; } $this->debug && $this->debug.='***** Server response *****'."\n".$response.'***** End of server response *****'."\n"; $response = json_decode($response,true); } else { throw new Exception('Unable to connect to '.$this->url); } // debug output if ($this->debug) { echo nl2br($debug); } // final checks and return if (!$this->notification) { // check if ($response['id'] != $currentId) { throw new Exception('Incorrect response id (request id: '.$currentId.', response id: '.$response['id'].')'); } if (!is_null($response['error'])) { throw new Exception('Request error: '.$response['error']); } return $response['result']; } else { return true; } } } ?>
|
|
|
Fijate que no, no me ha cobrado ningún fee en lo absoluto. La recomiendo.
|
|
|
When I make a API call to my wallet on Blockchain.info it gives me the error: Warning: fopen(): php_network_getaddresses: getaddrinfo failed: No address associated with hostname in /home/u2485/public_html/jsonRPCClient.php on line 132 Unable to connect to http://mywalletID:mypassword@rpc.blockchain.info:80/' in /home/u2485/public_html/jsonRPCClient.php:140I'm using the jsonRPCClient.php to communicate to bitcoin server. I have my config.php file where I specify login, pass, ip, port, etc. <?php $rpc = array( 'login' => 'mywalletID', 'password' => 'mypassword', 'ip' => 'rpc.blockchain.info', 'port' => '80' ?> And here is the file where I'm connecting with blockchain.info <?php include('config.php'); require_once 'jsonRPCClient.php'; $client = new jsonRPCClient('http://' . $rpc['login'] . ':' . $rpc['password'] . '@' . $rpc['ip'] . ':' . $rpc['port'] . '/') or die('Error: could not connect to RPC server.'); echo 'Done.'; ?> source: http://blockchain.info/es/api/json_rpc_api
|
|
|
2nd price 
|
|
|
Hello, I have a faucet and I'm wondering...
What's the way to "save" the addresses from your faucet users?
I mean, every time that they enter to my faucet they have to "write" their addresses, so I want to save them that job.
|
|
|
A mi me aparece normal, tal vez es tu navegador.
|
|
|
Hola a todos. Si son de los que utilizan faucets a menudo les paso a dejar la mía.40 (90%), 50 (9%) y 70 (1%) satoshis cada 5 minutos.http://freesatoshis.esy.es/Las transacciones son instantáneas tu micro-monedero http://epay.info/Saludos.
|
|
|
PTC, Faucets with a lot of referrals, Freelance is a good option too. I don't recommend HYIPs.
|
|
|
Hello I'm glad you like it. Thanks.
|
|
|
|