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

Startup StarCloud Plans First Bitcoin Mining Satellite in Low Earth Orbit

March 8, 2026

Are Investors Abandoning BTC?

March 2, 2026

Announcing the world’s first regulated, tokenized stock perpetual futures using xStocks

February 24, 2026
Add A Comment

Comments are closed.

Recent Posts

Phemex TradFi Hits $10B Monthly Volume, Advancing Cross-Market Trading Infrastructure

March 12, 2026

BMNR), Cathie Wood’s ARK Invest, And Payward To Expand Into Next Generation Technology

March 12, 2026

Ethereum attempts to hold above $2,000 as whales withdraw $155 million from ETH.

March 12, 2026

PrimeXBT Launches PXTrader 2.0, Bringing Crypto And Traditional Markets Into One Trading Platform

March 12, 2026

BYDFi Perpetual Futures Data Now Live On TradingView

March 12, 2026

3/11 Price Prediction: BTC, ETH, BNB, XRP, SOL, DOGE, ADA, BCH, HYPE, XMR

March 12, 2026

Ethereum Price Rejects Again, Market Watches Key Support Closely

March 11, 2026

Ethereum Price Rejects Again, Market Watches Key Support Closely

March 11, 2026

CoinPoker launches new app with Rake Free Poker, recruits Abby Merk and Papo MC

March 11, 2026

This Is Fine (Until the Grant Runs Out)

March 11, 2026

Ether Funds Turn Negative, But Bears Still Retain Control: Why?

March 11, 2026

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

Phemex TradFi Hits $10B Monthly Volume, Advancing Cross-Market Trading Infrastructure

March 12, 2026

BMNR), Cathie Wood’s ARK Invest, And Payward To Expand Into Next Generation Technology

March 12, 2026

Ethereum attempts to hold above $2,000 as whales withdraw $155 million from ETH.

March 12, 2026
Most Popular

Wake: Ethereum’s new open source tool to stop bugs

November 28, 2023

BYDFi Joins Korea Blockchain Week 2025 (KBW2025): Deepening Web3 Engagement

September 23, 2025

Bitcoin price prediction | Is BTC a good investment?

March 1, 2024
  • Home
  • About Us
  • Contact Us
  • Disclaimer
  • Privacy Policy
  • Terms and Conditions
© 2026 Crypto Flexs

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