Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • TRADING
  • SUBMIT
Crypto Flexs
  • DIRECTORY
  • CRYPTO
    • ETHEREUM
    • BITCOIN
    • ALTCOIN
  • BLOCKCHAIN
  • EXCHANGE
  • TRADING
  • SUBMIT
Crypto Flexs
Home»BITCOIN NEWS»utxo – Chain 2 transactions in the same block with bitcoinlib in Python
BITCOIN NEWS

utxo – Chain 2 transactions in the same block with bitcoinlib in Python

By Crypto FlexsDecember 9, 20231 Min Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
utxo – Chain 2 transactions in the same block with bitcoinlib in Python
Share
Facebook Twitter LinkedIn Pinterest Email

I asked yesterday if it is possible to have a tx from A to B and B to C in the same block. The second tx consumes the first UTXO (B’s initial balance is 0).

Apparently it is: Can two related “spends” be in the same block?

But now I’m trying to test this with bitcoinlib in Python. My code is:

wallet = Wallet.create('MyWallet',
                        keys = seed_phrase,
                        witness_type = "segwit")

address = wallet.get_key(0).address
address2 = wallet.get_key(1).address
address3 = wallet.get_key(2).address

wallet.transactions_update()

fee = 1_000
send_value = wallet.balance() - fee

tx = wallet.send( ((address2, send_value)),
                    fee = fee,
                    offline = True)

wallet.transaction_import(tx)

send_value2 = send_value - fee

tx2 = wallet.send( ((address3, send_value2)), 
                     account_id = 1,
                     fee = fee,
                     offline = True)

The first tx works fine since the first address has a balance, but the second address fails with:

WalletError: Create transaction: No unspent transaction outputs found or no key available for UTXO's

The problem seems to be getting the first tx for the wallet.

Any ideas on how to fix this? thank you

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

Related Posts

BTC price could be range-bound to $60,000-$80,000 pending a rate cut.

November 20, 2025

Bearish Administration: Let’s take a look at how the Bitcoin price has changed since Donald Trump became President.

November 14, 2025

Is Bitcoin price bottoming? The latest on-chain data suggests:

November 8, 2025
Add A Comment

Comments are closed.

Recent Posts

MEXC Launches Ethereum Eco Month With $1 Million Prize Pool

November 21, 2025

The RWA market is expected to surge in 2026, according to Plume Growth Forecast.

November 21, 2025

BTC price could be range-bound to $60,000-$80,000 pending a rate cut.

November 20, 2025

VerifiedX Partners With Crypto.com For Institutional Custody And Liquidity Solution

November 20, 2025

Bitcoin Policy Institute Launches Interactive US Tax Payment Model to Support Bitcoin For America Act

November 20, 2025

Lido Triggerable Withdrawal Audit – Ackee Blockchain

November 20, 2025

Numerai Raises $30 Million Series C Led By Top University Endowments, At $500 Million Valuation

November 20, 2025

Logos Unifies Under One Identity To Deliver A Private Tech Stack To Revitalise Civil Society

November 20, 2025

Tapbit Marks 4th Anniversary With Continued Focus On Innovation And User Trust

November 20, 2025

Reuters: Brazil considers taxing international cryptocurrency payments

November 20, 2025

3 Altcoins enter the danger zone

November 20, 2025

Crypto Flexs is a Professional Cryptocurrency News Platform. Here we will provide you only interesting content, which you will like very much. We’re dedicated to providing you the best of Cryptocurrency. We hope you enjoy our Cryptocurrency News as much as we enjoy offering them to you.

Contact Us : Partner(@)Cryptoflexs.com

Top Insights

MEXC Launches Ethereum Eco Month With $1 Million Prize Pool

November 21, 2025

The RWA market is expected to surge in 2026, according to Plume Growth Forecast.

November 21, 2025

BTC price could be range-bound to $60,000-$80,000 pending a rate cut.

November 20, 2025
Most Popular

Solana Mimecoin Protocol Unveils New ‘Short Squeeze’ Platform

August 21, 2024

Wormhole Unveils Native Token Transfer (NTT) Framework for Seamless Cross-Chain Transactions

August 4, 2024

AssemblyAI Improves Speaker Diarization Model and Releases New Tutorial

August 17, 2024
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions
© 2025 Crypto Flexs

Type above and press Enter to search. Press Esc to cancel.