| 39 | AnySpendData::AnySpendData(const blocksci::RawAddress &address, const blocksci::ScriptAccess &scripts) : wrapped(rawAddressSpendData(address, scripts)) {} |
| 40 | |
| 41 | SpendData<blocksci::AddressType::Enum::MULTISIG>::SpendData(const ScriptOutput<blocksci::AddressType::Enum::MULTISIG> &output) { |
| 42 | uint32_t i = 0; |
| 43 | for (auto &address : output.data.addresses) { |
| 44 | addresses.at(i) = address.data.pubkey; |
| 45 | i++; |
| 46 | } |
| 47 | addressCount = i; |
| 48 | } |
| 49 | |
| 50 | SpendData<blocksci::AddressType::Enum::MULTISIG>::SpendData(const blocksci::RawAddress &address, const blocksci::ScriptAccess &scripts) { |
| 51 | uint32_t i = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected