4
2
I was looking for answer everywhere. Basically is there any way of calculate multi-sig transaction size when the transaction is creating, before the signing procedure? I was trying to find any pattern for that, with no results.
Informations I have:
- num of inputs;
- num of outputs;
- num of required signatures
I will appreciate any clue to solve this problem.
Are you asking about transactions with several inputs or about input/output from/to msig-address? – amaclin – 2014-09-18T14:19:23.517
About transaction from multisig address. So I have few transactions belonging to multisig address and I want to send money to whatever address. Before broadcast to the network multisig transaction require signing, in my case two signatures. The base transaction after calling './bitcoin-cli createrawtransaction trans_list recipients' is quite small, after first sign becoming around 1000 bytes and after second 2000 bytes it also depending from how many transactions is coming as input – Mr.Coffee – 2014-09-18T14:57:24.770
OK, next question is: bare multisig output or p2sh multisig? – amaclin – 2014-09-18T15:00:37.023
It is p2sh script, created by './bitcoin-cli createmultisig <num required> <addresses|pubkeys>' – Mr.Coffee – 2014-09-18T15:11:54.337