MCPcopy Create free account
hub / github.com/ElementsProject/elements / UniValueType

Class UniValueType

src/rpc/util.h:51–56  ·  view source on GitHub ↗

Wrapper for UniValue::VType, which includes typeAny: * Used to denote don't care type. */

Source from the content-addressed store, hash-verified

49/** Wrapper for UniValue::VType, which includes typeAny:
50 * Used to denote don't care type. */
51struct UniValueType {
52 UniValueType(UniValue::VType _type) : typeAny(false), type(_type) {}
53 UniValueType() : typeAny(true) {}
54 bool typeAny;
55 UniValue::VType type;
56};
57
58/**
59 * Type-check arguments; throws JSONRPCError if wrong type given. Does not check that

Callers 12

lockunspentFunction · 0.85
listunspentFunction · 0.85
FundTransactionFunction · 0.85
fundrawtransactionFunction · 0.85
bumpfee_helperFunction · 0.85
sendFunction · 0.85
walletcreatefundedpsbtFunction · 0.85
sendrawtransactionFunction · 0.85
testmempoolacceptFunction · 0.85
updatepsbtpeginFunction · 0.85
deriveaddressesFunction · 0.85
ParsePrevoutsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected