IsMine overloads
Synopses
Declared in <wallet/wallet.h>
Report whether an outpoint belongs to this wallet.
Report whether a script belongs to this wallet.
Report whether any output of a transaction belongs to this wallet.
[[requires_capability(0x7fbc76bfe178), requires_capability(0x7fbc81b77b38), requires_capability(0x7fbc7e0159b8), requires_capability(0x7fbc7e244e68), requires_capability(0x7fbc8e715aa8)]]
bool
IsMine(CTransaction const& tx) const;
Report whether a destination belongs to this wallet.
[[requires_capability(0x7fbc76bfdf38), requires_capability(0x7fbc81b778f8), requires_capability(0x7fbc7e015778), requires_capability(0x7fbc7e244c28), requires_capability(0x7fbc8e715868)]]
bool
IsMine(CTxDestination const& dest) const;
Report whether a transaction output belongs to this wallet.
Return Value
-
true if the outpoint is owned by the wallet.
-
true if the script is owned by the wallet.
-
true if any output is owned by the wallet.
-
true if the destination is owned by the wallet.
-
true if the output is owned by the wallet.
Parameters
Name |
Description |
outpoint |
The outpoint to test. |
script |
The script to test. |
tx |
The transaction to test. |
dest |
The destination to test. |
txout |
The output to test. |
Created with MrDocs