MCPcopy Create free account
hub / github.com/QuipNetwork/cpp-sdk / transferWithWinternitz

Method transferWithWinternitz

include/mock_wallet.hpp:30–40  ·  view source on GitHub ↗

Override virtual functions

Source from the content-addressed store, hash-verified

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,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected