Skip to content

Commit 8f9ca2a

Browse files
committed
Comments.
1 parent 6b67336 commit 8f9ca2a

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

include/bitcoin/database/impl/query/archive_write.ipp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,22 +105,22 @@ code CLASS::set_code(tx_link& tx_fk, const transaction& tx) NOEXCEPT
105105
if (tx_fk.is_terminal())
106106
return error::tx_tx_allocate;
107107

108-
// Allocate contiguously and store inputs (script & witness).
108+
// Allocate contiguously and store inputs.
109109
input_link in_fk{};
110110
if (!store_.input.put_link(in_fk, table::input::put_ref{ {}, tx }))
111111
return error::tx_input_put;
112112

113-
// Allocate contiguously and store outputs (script, w/parent).
113+
// Allocate contiguously and store outputs.
114114
output_link out_fk{};
115115
if (!store_.output.put_link(out_fk, table::output::put_ref{ {}, tx_fk, tx }))
116116
return error::tx_output_put;
117117

118-
// Allocate and contiguously store input links (first + tx.input sizes, w/parent & seq).
118+
// Allocate and contiguously store input links.
119119
point_link ins_fk{};
120120
if (!store_.ins.put_link(ins_fk, table::ins::put_ref{ {}, in_fk, tx_fk, tx }))
121121
return error::tx_ins_put;
122122

123-
// Allocate and contiguously store output links (first + tx.output sizes).
123+
// Allocate and contiguously store output links.
124124
point_link outs_fk{};
125125
if (!store_.outs.put_link(outs_fk, table::outs::put_ref{ {}, out_fk, tx }))
126126
return error::tx_outs_put;

0 commit comments

Comments
 (0)