Skip to content

Commit da06357

Browse files
committed
Comments.
1 parent 6aef84a commit da06357

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

include/bitcoin/system/chain/prevout.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class BC_API prevout final
3939
/// Unused if the input owning this prevout is null (coinbase).
4040
size_t height;
4141

42-
/// database: populated with a database identifier for the parent tx.
42+
/// node: populated with a database identifier for the parent tx.
4343
uint32_t parent{ zero };
4444
};
4545

@@ -51,10 +51,10 @@ class BC_API prevout final
5151
{
5252
/// The median time past at height (max_uint32 if not found/confirmed).
5353
/// Unused if the input owning this prevout is null (coinbase).
54-
/// database: unused as validation precedes prevout block association.
54+
/// node: unused as validation precedes prevout block association.
5555
uint32_t median_time_past{ max_uint32 };
5656

57-
/// database: set via block.populate() as internal spends do not
57+
/// node: set via block.populate() as internal spends do not
5858
/// require prevout block association for relative locktime checks.
5959
/// So median_time_past is not required as locked is determined here.
6060
bool locked;
@@ -73,12 +73,12 @@ class BC_API prevout final
7373
/// indicates whether the prevout is spent at height (double spend).
7474
bool spent{ true };
7575

76-
/// database: indicates that the input spends output inside same block.
76+
/// node: indicates that the input spends output inside same block.
7777
bool inside;
7878
};
7979

8080
/// The previous output is of a coinbase transaction.
81-
/// database: populated, does not require prevout block association.
81+
/// node: populated, does not require prevout block association.
8282
bool coinbase{ true };
8383
};
8484

0 commit comments

Comments
 (0)