| 53 | } |
| 54 | |
| 55 | bool changePqOwner(const PublicKey &pq_pubkey, const Signature &pq_sig, |
| 56 | const PrivateKey &private_key) override { |
| 57 | if (changePqOwnerMock) { |
| 58 | return changePqOwnerMock(pq_pubkey, pq_sig, private_key); |
| 59 | } |
| 60 | return QuipWallet::changePqOwner(pq_pubkey, pq_sig, private_key); |
| 61 | } |
| 62 | |
| 63 | Address getPqOwner() override { |
| 64 | if (getPqOwnerMock) { |
nothing calls this directly
no outgoing calls
no test coverage detected