Are Bitcoin transactions permitted to have no outputs (i.e. all inputs become transaction fee)?

15

1

I am interested in the possible use of the Bitcoin (or other altcoin) blockchain as a generalized distributed ledger, meaning that it is useful for tracking information other than coin transactions proper. A prerequisite for that would seem to be the ability to pay for transactions whose primary purpose is not moving Bitcoins from one address to another. So, can Bitcoin transactions list no outputs, thus leaving all inputs as a transaction fee reward for the miner?

Josh Hansen

Posted 2013-08-01T04:08:09.813

Reputation: 253

Answers

13

No. If you create one, it won't be relayed or mined by Bitcoin Core. If it gets into a block, it will be rejected. From the source code for Bitcoin Core (tx_verify.cpp:164):

if (tx.vout.empty())
    return state.DoS(10, false, REJECT_INVALID, "bad-txns-vout-empty");

However, you can create a vout with 0 satoshis. That isn't a "standard" transaction, so it will not be mined by the software by default. However, if it gets into a block, it's valid.

Nick ODell

Posted 2013-08-01T04:08:09.813

Reputation: 26 536

However if a custom miner puts a 100% transaction fee TX into a block, it would be accepted, and new blocks built on top of it.goodguys_activate 2013-08-01T05:19:03.277

5@makerofthings7 That is not correct. It is a hard network rule that transactions have at least one input and at least one output. Putting a transaction without outputs in a block would make that block invalid. However, referring to the advice above, you can indeed have outputs with 0 satoshi. The network will not relay such transactions either, but they are valid inside blocks.Pieter Wuille 2013-08-01T11:33:24.333

1@PieterWuille Thank you for the correctiongoodguys_activate 2013-08-01T12:20:35.497

I just looked through tx_verify.cpp to find a rule which would reject any vout value of 0, but couldn't find any. Can anyone point to where Bitcoin Core would reject such a transaction?Jacob Ford 2018-05-30T19:31:23.333