aceat64/EasyBitcoin-PHP

Is there a way to specify the wallet file?

Closed this issue · 1 comments

I'm running bitcoind with multiple wallets since they just added the support for it in their last release. However, I don't see any way to specify the .dat file for the wallet here. Is this possible? If so, how would I do this?

I believe you should be able to specify it when initializing the Bitcoin connection/object.

$bitcoin = new Bitcoin('username', 'password', 'localhost', 8332, '/wallet/otherwallet.dat/');

I haven't tested it though.