May 2, 2026

What’s a unique identifier in listsinceblock output?

I am trying to understand if there a unique identifier for transactions. I didn’t find anything about that mentioned in listsinceblock‘s help. { “involvesWatchonly”: true, “account”: “”, “address”: “mvd6qFeVkqH6MNAS2Y2cLifbdaX5XUkbZJ”, “category”: “receive”, “amount”: 10, “label”: “”, […]

Read More

Importprivkey problem for Litecoin clone

I have cloned an older version of Litecoin using a tutorial. I chose the starting letter for the public addresses to be lower case “x”. Everything is working fine except for importprivkey. It will always […]

Read More

How to send Bitcoin in the Testnet?

I’m using this library: https://github.com/lian/Bitcoin-ruby And here’s my code: require ‘open-uri’ require ‘net/http’ require ‘net/https’ require ‘json’ require ‘Bitcoin’ Bitcoin.network = :testnet3 def get_response(prev_tx) url = “https://testnet.blockexplorer.com/api/rawtx/#{prev_tx}” uri = URI(url) response = Net::HTTP.get(uri) response = […]

Read More

Testnet Bitcoin Connection refused (111)

I have ah Raspberry and i will a BTC & Lightning node set up. my Bitcoin.conf testnet=3 Bitcoind options server=1 daemon=1 txindex=1 disablewallet=1 Connection settings rpcuser=raspibolt rpcpassword=1212431 addnode=104.237.131.138 addnode=151.80.205.132 addnode=192.155.82.123 addnode=74.220.255.190 addnode=80.100.203.151 Raspberry Pi optimizations […]

Read More

Can I open many channels to one connection?

Trying to learn the Lightning Network 🙂 Can I do something like this: STEP 1: Generate new addresses address_1 = cli/lightning-cli newaddr address_2 = cli/lightning-cli newaddr address_3 = cli/lightning-cli newaddr address_4 = cli/lightning-cli newaddr address_5 […]

Read More