1
I need to use bitcoin testnet3 server for testing via php.
bitcoin.conf
rpcuser=bitcoinrpc
rpcpassword=random string
testnet=1
create JsonRpc object with easy bitcoin:
$bitcoin = new Bitcoin('bitcoinrpc', 'random string', 'localhost', 18332);
what is the solution for this? does rpc port is right for tesnet3 server?
Yeah, that all looks fine. Are you having a problem with it? – Nick ODell – 2015-08-14T07:02:04.090
1@NickODell I thought Bitcoind/cli was disabled without the the
daemon/serverflags? – Wizard Of Ozzie – 2015-08-14T07:25:44.593note:
mainnetandtestnet rpcpasswordare same – Md Shahadat Hossain – 2015-08-14T08:12:52.610