| 1385 | bool IsSingleType() const final { return true; } |
| 1386 | |
| 1387 | std::optional<int64_t> ScriptSize() const override { |
| 1388 | const auto n_keys = m_pubkey_args.size(); |
| 1389 | return (1 + 32 + 1) * n_keys + BuildScript(m_threshold).size() + 1; |
| 1390 | } |
| 1391 | |
| 1392 | std::optional<int64_t> MaxSatSize(bool use_max_sig) const override { |
| 1393 | return (1 + 65) * m_threshold + (m_pubkey_args.size() - m_threshold); |
nothing calls this directly
no test coverage detected