Questions tagged [bitcoind]

Bitcoind is a program that implements the Bitcoin protocol for command line and remote procedure call (RPC) use.

bitcoind is a program that implements the protocol for command line and use. It is also the first Bitcoin client in the network's history. It is available under the MIT license in 32-bit and 64-bit versions for Windows, GNU/Linux-based OSes, and Mac OS X.

Prior to version 0.5, this service-provider client used a GUI as its default GUI. It is now instead bundled with Bitcoin-Qt.

218 questions
2
votes
1 answer

bitcoinrpc calls return nothing

I am using bitcoind in my project and when I deploy it on my server bitcoind works strange. I use this lib to work with rpc https://github.com/jgarzik/python-bitcoinrpc. On local dev server everything is fine but when I deploy it to vps it stops…
Marselo Bonagi
  • 173
  • 2
  • 10
2
votes
1 answer

Bitcoin: error parsing json in bashscript to send BTC using sendmany command

I am simulating a bitcoin network on my machine for which I have written a bash script to simulate the transactions between the nodes. When I use the sendmany option of bitcoin-cli to send transactions I am getting an json parsing error reported by…
bawejakunal
  • 1,678
  • 2
  • 25
  • 54
2
votes
4 answers

Getting same error when building bitcoind on Mac OS X

So I am on the docs for building bitcoind for OS X: https://github.com/bitcoin/bitcoin/blob/master/doc/build-osx.md and I've had the same error every time I try and build. Here are the steps I take: brew install autoconf automake berkeley-db4…
JimmyMow
  • 83
  • 2
  • 8
2
votes
1 answer

Check vanitygen generated addresses locally?

First of all, I'm aware of the vast, vast keyspace of bitcoin addresses. However, I've been experimenting with Vanitygen these days and I was wondering if all the generated addresses in it were directly ported to a local server running the compiled…
user4215685
2
votes
4 answers

Upstart script for bitcoind, respawn feature

I have an upstart script for the bitcoind, it based on the script in this topic: https://bitcointalk.org/index.php?topic=25518.0 I strongly need respawn future working: if something happened bitcoind should restart automatically. I tryed to emulate…
2
votes
1 answer

SocketTimeoutException after four requests to local bitcoind

I want to connect to bitcoind using java. My plan is to use htmlunit and gson. Right now I can complete a single request successfully. However, I can not do more than exactly four subsequent requests due to a SocketTimeoutException being thrown at…
user2084795
  • 704
  • 1
  • 7
  • 20
1
vote
1 answer

Connecting 3rd party nodes to Bitcoinlib

I have this node endpoint that requires JSON-RPC payload: https://btc.getblock.io/my_api_key/testnet/ I have not been able to connect this node to the Bitcoinlib Python module. I have tried to connect this node to the Bitcoinlib module. I however…
Fluxx
  • 15
  • 4
1
vote
0 answers

bitcoind rpc command timeout

I'm running bitcoind v0.17 after booting it and running it for a little while, it eventually timeouts ALL rpc command requests. If I use the CLI as well, it also times out. This is what happens: https://gyazo.com/f97ecb3358761b3e3e99cd57535b9bf5 I…
Lorza
  • 459
  • 8
  • 23
1
vote
0 answers

Bitcoin-cli Wallet creation error: Could not locate rpc credentials

I'm installing an application on my vps for testing. The updated version of the bitcoin core doesnt create wallets automatically as it used to. hence i'm running into some problems i haven't dealt with before (i'm not very experienced with bitcoin…
1
vote
1 answer

Adding a manually generated private key on bitcoin node

We are hosting a bitcoin node to handle deposits on our website. Now, we generate new addresses on the node via RPC call. The problem is that the client is afraid of losing the private keys in case of server failure for example. So what I purposed…
1
vote
1 answer

Bitcoin core on osx and bitcoinlib socket error

I have some problem about my study.. When I make python file about bitcoinlib like it from bitcoin.rpc import RawProxy p = RawProxy() info = p.getblockchaininfo() print(info['blocks']) But it shows me some error like >> python3…
beeni.K
  • 21
  • 3
1
vote
1 answer

How to use bitcoin -rpcwallet flag in deno RPC

I want to create an address in a wallet with bitcoin-cli, the command for this will look like this for the loaded wallet bitcoin-cli getnewaddress some_users and with Deno I can just do import { createRemote } from…
Emmanuel Amodu
  • 163
  • 2
  • 14
1
vote
0 answers

Configure esplora to point to the bitcoind servers ip address

I have 2 servers running: Ubuntu 18.04 running bitcoind daemon (v0.18.1 full blockchain synchronized) Ubuntu 18.04 running esplora (the local single page website works, but it has no data from the local blockchain) Both servers are on the same…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
1
vote
1 answer

Decode bitcoin transaction vin address

I'm building a graph of blockchain transactions and have a problem to extract source address for a transaction (output addresses are easy,bundled in the getrawtransaction result). for example this transaction…
Miro Krsjak
  • 355
  • 1
  • 16
1
vote
1 answer

How to get UTXOS and Transactions related to a specific address without using Bitcore?

I am developing a wallet for HappyCoin which is similar but different fork of Bitcoin. Since this coin doesn't have addressindex rpc methods(getaddressbalance, getaddressdeltas, getaddressmempool, getaddresstxids, getaddressutxos), I can't get utxos…
1 2
3
14 15