Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/bitcoin/checkpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ pub enum CheckpointStatus {
/// remove inputs or outputs.
Signing,

/// All inputs in the the checkpoint are fully signed and the contained
/// All inputs in the checkpoint are fully signed and the contained
/// checkpoint transaction is valid and ready to be broadcast on the bitcoin
/// network.
Complete,
Expand Down Expand Up @@ -455,7 +455,7 @@ pub const DEFAULT_FEE_RATE: u64 = 10;
///
/// Checkpoints are each associated with a main transaction, the "checkpoint
/// transaction", which spends the reserve output of the previous checkpoint
/// transaction and the outputs of any incoming deposits. It pays out to the the
/// transaction and the outputs of any incoming deposits. It pays out to the
/// latest signatory set (in the "reserve output") and to destinations of any
/// requested withdrawals. This transaction is included in the third batch of
/// the `batches` deque.
Expand Down Expand Up @@ -1311,7 +1311,7 @@ impl<'a> BuildingCheckpointMut<'a> {
for (i, (vout, output)) in intermediate_tx_outputs.iter().enumerate() {
if output == &(input.amount) {
// Once found, link the final tx's input to the vout index
// of the the matching output from the intermediate tx, and
// of the matching output from the intermediate tx, and
// remove it from the matching list.

input.prevout = Adapter::new(bitcoin::OutPoint {
Expand Down
2 changes: 1 addition & 1 deletion src/bitcoin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ impl Bitcoin {
}

/// Called by users to set their recovery script, which is their desired
/// destination paid out to in the emergency disbursal process if the the
/// destination paid out to in the emergency disbursal process if the
/// account has sufficient balance.
#[call]
pub fn set_recovery_script(&mut self, signatory_script: Adapter<Script>) -> Result<()> {
Expand Down