Skip to content

Commit b41f35f

Browse files
committed
Merge #307: Remove unnecessary "parsed into" in rustdocs
4813664 Remove unnecessary parsed into comment (Jamil Lambert, PhD) Pull request description: There are unnecessary comments in the struct definition saying parsed or converted into. Remove them. Closes #299 ACKs for top commit: tcharding: ACK 4813664 Tree-SHA512: d7defb52e0db7e5da015f73a6c013022094da572e89321fc4100343a99d5121fe18d6c1c37cac1c5121e9101a41c1397e838f5b4c415f7118522253984a59f15
2 parents 5e29ee6 + 4813664 commit b41f35f

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)