| 111 | } |
| 112 | |
| 113 | static constexpr bool IsValidMultisigKeyCount(int n_keys) |
| 114 | { |
| 115 | return n_keys > 0 && n_keys <= MAX_PUBKEYS_PER_MULTISIG; |
| 116 | } |
| 117 | |
| 118 | static bool GetMultisigKeyCount(opcodetype opcode, valtype data, int& count) |
| 119 | { |
no outgoing calls
no test coverage detected