Skip to content

Commit

Permalink
docs: update docs comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sneurlax committed Dec 30, 2024
1 parent 95a8c22 commit f3ccf04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/bip48.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ class Bip48Wallet {
final int threshold;
final int totalKeys;

/// List of cosigner HDPublicKeys.
final List<HDPublicKey> cosignerKeys = [];

/// Optional network to use (defaults to bitcoin mainnet).
final Network network;

bool get canSign => _accountPrivKey != null;
Expand Down Expand Up @@ -81,7 +83,7 @@ class Bip48Wallet {
}
}

/// Return the xpub for this account.
/// Return the xpub for this account, using the provided [network]’s prefix.
String get accountXpub {
if (_accountPrivKey != null) {
final pub = _accountPrivKey!.hdPublicKey;
Expand Down

0 comments on commit f3ccf04

Please sign in to comment.