Skip to content

Commit 4e0ced0

Browse files
committed
f :%s/identfiier/identifier/g
1 parent 48e3f94 commit 4e0ced0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/balance.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub enum LightningBalance {
2222
ClaimableOnChannelClose {
2323
/// The identifier of the channel this balance belongs to.
2424
channel_id: ChannelId,
25-
/// The identfiier of our channel counterparty.
25+
/// The identifier of our channel counterparty.
2626
counterparty_node_id: PublicKey,
2727
/// The amount available to claim, in satoshis, excluding the on-chain fees which will be
2828
/// required to do so.
@@ -33,7 +33,7 @@ pub enum LightningBalance {
3333
ClaimableAwaitingConfirmations {
3434
/// The identifier of the channel this balance belongs to.
3535
channel_id: ChannelId,
36-
/// The identfiier of our channel counterparty.
36+
/// The identifier of our channel counterparty.
3737
counterparty_node_id: PublicKey,
3838
/// The amount available to claim, in satoshis, possibly excluding the on-chain fees which
3939
/// were spent in broadcasting the transaction.
@@ -54,7 +54,7 @@ pub enum LightningBalance {
5454
ContentiousClaimable {
5555
/// The identifier of the channel this balance belongs to.
5656
channel_id: ChannelId,
57-
/// The identfiier of our channel counterparty.
57+
/// The identifier of our channel counterparty.
5858
counterparty_node_id: PublicKey,
5959
/// The amount available to claim, in satoshis, excluding the on-chain fees which will be
6060
/// required to do so.
@@ -73,7 +73,7 @@ pub enum LightningBalance {
7373
MaybeTimeoutClaimableHTLC {
7474
/// The identifier of the channel this balance belongs to.
7575
channel_id: ChannelId,
76-
/// The identfiier of our channel counterparty.
76+
/// The identifier of our channel counterparty.
7777
counterparty_node_id: PublicKey,
7878
/// The amount potentially available to claim, in satoshis, excluding the on-chain fees
7979
/// which will be required to do so.
@@ -90,7 +90,7 @@ pub enum LightningBalance {
9090
MaybePreimageClaimableHTLC {
9191
/// The identifier of the channel this balance belongs to.
9292
channel_id: ChannelId,
93-
/// The identfiier of our channel counterparty.
93+
/// The identifier of our channel counterparty.
9494
counterparty_node_id: PublicKey,
9595
/// The amount potentially available to claim, in satoshis, excluding the on-chain fees
9696
/// which will be required to do so.
@@ -109,7 +109,7 @@ pub enum LightningBalance {
109109
CounterpartyRevokedOutputClaimable {
110110
/// The identifier of the channel this balance belongs to.
111111
channel_id: ChannelId,
112-
/// The identfiier of our channel counterparty.
112+
/// The identifier of our channel counterparty.
113113
counterparty_node_id: PublicKey,
114114
/// The amount, in satoshis, of the output which we can claim.
115115
///

0 commit comments

Comments
 (0)