what is the bitcoin.conf for testnet3?

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?

Md Shahadat Hossain

Posted 2015-08-14T06:45:04.707

Reputation: 197

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/server flags?Wizard Of Ozzie 2015-08-14T07:25:44.593

note: mainnet and testnet rpcpassword are sameMd Shahadat Hossain 2015-08-14T08:12:52.610

No answers