Skip to content

Commit 4813664

Browse files
committed
Remove unnecessary parsed into comment
There are unnecessary comments in the struct definition saying parsed or converted into. Remove them.
1 parent 24607b7 commit 4813664

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

types/src/model/blockchain.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -608,16 +608,16 @@ pub struct SpendActivity {
608608
#[derive(Clone, Debug, PartialEq, Deserialize, Serialize)]
609609
#[serde(deny_unknown_fields)]
610610
pub struct ReceiveActivity {
611-
/// The total amount in BTC of the new output, converted to `bitcoin::Amount`.
611+
/// The total amount in BTC of the new output.
612612
pub amount: Amount,
613-
/// The block that this receive is in (omitted if unconfirmed), parsed into `bitcoin::BlockHash`.
613+
/// The block that this receive is in (omitted if unconfirmed).
614614
pub block_hash: Option<BlockHash>,
615615
/// The height of the receive (omitted if unconfirmed).
616616
pub height: Option<u32>,
617-
/// The txid of the receiving transaction, parsed into `bitcoin::Txid`.
617+
/// The txid of the receiving transaction.
618618
pub txid: Txid,
619619
/// The vout of the receiving output.
620620
pub vout: u32,
621-
/// The ScriptPubKey, converted to `model::ScriptPubkey`.
621+
/// The ScriptPubKey.
622622
pub output_spk: ScriptPubkey,
623623
}

0 commit comments

Comments
 (0)