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

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

Bitcoin price holds near $109,000 as traders eye a November bounce.

November 2, 2025
Add A Comment

Comments are closed.

Recent Posts

Bessent called for a reconsideration of taxes on cryptocurrency staking rewards.

November 19, 2025

Introducing Filecoin Onchain Cloud: Verifiable, Developer-Owned Infrastructure

November 18, 2025

Vault12 Guard now uses the CXP industrial protocol to retrieve iOS credentials from Apple Password.

November 18, 2025

The XRP Community Is Exploding! Investors Are Achieving An Average Daily Return Of $3,777 Using Anchor Mining!

November 18, 2025

Bitcoin price risks hitting a deeper bottom — unless this happens.

November 18, 2025

Strategy to expand corporate holdings amid Bitcoin slump

November 17, 2025

Lite Strategy Reports First Quarter Fiscal Year 2026 Results; Highlights Successful Launch of $100M Litecoin Treasury Strategy and Movement into Active Capital Market Operations

November 17, 2025

The First Self-Sovereign AI Agent For Using And Automating Any Smart Contract

November 17, 2025

SGX Derivatives Breaks New Ground With Institutional-grade Crypto Perpetual Futures

November 17, 2025

Blockchain For Good Alliance (BGA) Recognized Groundbreaking Blockchain Projects Advancing The SDGs At 2025 Forum

November 17, 2025

Phemex Celebrates Its 6th Anniversary With 66% User Growth And Shared Vision

November 17, 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

Bessent called for a reconsideration of taxes on cryptocurrency staking rewards.

November 19, 2025

Introducing Filecoin Onchain Cloud: Verifiable, Developer-Owned Infrastructure

November 18, 2025

Vault12 Guard now uses the CXP industrial protocol to retrieve iOS credentials from Apple Password.

November 18, 2025
Most Popular

SEC recognizes the application of GRAYSCALE XRP and Doge ETF.

February 14, 2025

4 The main bitcoin metrics are discounted by $ 80K BTC.

April 1, 2025

Freedx secures $ 50 million in funds to change encryption trading experience.

January 29, 2025
  • 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.