Changeset View
Changeset View
Standalone View
Standalone View
src/wallet/wallet.h
| Show First 20 Lines • Show All 270 Lines • ▼ Show 20 Lines | |||||
| /** | /** | ||||
| * A transaction with a bunch of additional info that only the owner cares | * A transaction with a bunch of additional info that only the owner cares | ||||
| * about. It includes any unrecorded transactions needed to link it back to the | * about. It includes any unrecorded transactions needed to link it back to the | ||||
| * block chain. | * block chain. | ||||
| */ | */ | ||||
| class CWalletTx { | class CWalletTx { | ||||
| private: | private: | ||||
| const CWallet *pwallet; | const CWallet *const pwallet; | ||||
| /** | /** | ||||
| * Constant used in hashBlock to indicate tx has been abandoned, only used | * Constant used in hashBlock to indicate tx has been abandoned, only used | ||||
| * at serialization/deserialization to avoid ambiguity with conflicted. | * at serialization/deserialization to avoid ambiguity with conflicted. | ||||
| */ | */ | ||||
| static constexpr const uint256 &ABANDON_HASH = uint256::ONE; | static constexpr const uint256 &ABANDON_HASH = uint256::ONE; | ||||
| public: | public: | ||||
| ▲ Show 20 Lines • Show All 1,351 Lines • Show Last 20 Lines | |||||