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

Method executeWithWinternitz

include/mock_wallet.hpp:42–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected