Post
Topic
Board Bitcoin Discussion
Re: Byte calculation for transaction fee?
by
~Bitcoin~
on 27/02/2017, 12:58:06 UTC
How do we calculate the total number of bytes in a transaction we have done?
Most of the bitcoin wallets have fee recommendation system which will tell you how much fee will be enough to get confirmation within next block.

But if you like to calculate manually http://bitcoin.stackexchange.com/questions/1195/how-to-calculate-transaction-size-before-sending
Quote
If your transaction has in inputs and out outputs, the transaction size, in bytes will be:

in*180 + out*34 + 10 plus or minus 'in'
For example, this transaction has 40 inputs and 16 outputs. That gives us a transaction size of

40*180 + 16*34 + 10 +- 40
i.e. 7754 +- 40 bytes. The actual size is 7761 bytes.
I think this is correct calculation.