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(0x7f94fde05e18), requires_capability(0x7f95061a8b58), requires_capability(0x7f94f2b79668), requires_capability(0x7f94f0cf82f8), requires_capability(0x7f94fee3ace8)]]
bool
IsMine(CTransaction const& tx) const;
Report whether a destination belongs to this wallet.
[[requires_capability(0x7f94fde05bd8), requires_capability(0x7f95061a8918), requires_capability(0x7f94f2b79428), requires_capability(0x7f94f0cf80b8), requires_capability(0x7f94fee3aaa8)]]
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