Override virtual functions
| 28 | |
| 29 | // Override virtual functions |
| 30 | bool transferWithWinternitz(const PublicKey &pq_pubkey, |
| 31 | const Signature &pq_sig, |
| 32 | const Address &to_address, Amount amount, |
| 33 | const PrivateKey &private_key) override { |
| 34 | if (transferWithWinternitzMock) { |
| 35 | return transferWithWinternitzMock(pq_pubkey, pq_sig, to_address, amount, |
| 36 | private_key); |
| 37 | } |
| 38 | return QuipWallet::transferWithWinternitz(pq_pubkey, pq_sig, to_address, |
| 39 | amount, private_key); |
| 40 | } |
| 41 | |
| 42 | bool executeWithWinternitz(const PublicKey &pq_pubkey, |
| 43 | const Signature &pq_sig, |
nothing calls this directly
no outgoing calls
no test coverage detected