Skip to content

Commit f3ecb8d

Browse files
committed
Merge rust-bitcoin#224: Correct typo in struct field
3430bd8 Correct typo in struct field (GideonBature) Pull request description: This PR fix a typo in the `GetNetTotals` struct field `total_bytes_received`. ACKs for top commit: tcharding: ACK 3430bd8 Tree-SHA512: 46c749c02f8c797bb84df394bf57c82edccfa4f8072d85bf875ce48851a37c2874d2897bbebb641e12f7925ebbc9c49d2c5a22cd7bfc0b9607fcf1bac6d14bae
2 parents 08e23fa + 3430bd8 commit f3ecb8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/src/v17/network/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub struct GetConnectionCount(pub u64);
6565
pub struct GetNetTotals {
6666
/// Total bytes received.
6767
#[serde(rename = "totalbytesrecv")]
68-
pub total_bytes_recieved: u64,
68+
pub total_bytes_received: u64,
6969
/// Total bytes sent.
7070
#[serde(rename = "totalbytessent")]
7171
pub total_bytes_sent: u64,

0 commit comments

Comments
 (0)