| 40 | } |
| 41 | |
| 42 | bool executeWithWinternitz(const PublicKey &pq_pubkey, |
| 43 | const Signature &pq_sig, |
| 44 | const Address &target_address, |
| 45 | const std::vector<uint8_t> &opdata, |
| 46 | const PrivateKey &private_key) override { |
| 47 | if (executeWithWinternitzMock) { |
| 48 | return executeWithWinternitzMock(pq_pubkey, pq_sig, target_address, |
| 49 | opdata, private_key); |
| 50 | } |
| 51 | return QuipWallet::executeWithWinternitz(pq_pubkey, pq_sig, target_address, |
| 52 | opdata, private_key); |
| 53 | } |
| 54 | |
| 55 | bool changePqOwner(const PublicKey &pq_pubkey, const Signature &pq_sig, |
| 56 | const PrivateKey &private_key) override { |
nothing calls this directly
no outgoing calls
no test coverage detected