Skip to content

Commit 3ef8460

Browse files
committed
Add unregister method to Network
1 parent f4aeeed commit 3ef8460

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

Changes

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Revision history for Perl extension Bitcoin::Crypto.
99
- Bitcoin::Crypto::BIP44::get_derivation_path method (getting internal representation of BIP44 path)
1010
- Bitcoin::Crypto::Network::single_network class method (single-network mode)
1111
- Bitcoin::Crypto::Network::set_single method
12+
- Bitcoin::Crypto::Network::unregister method
1213

1314
[Improvements]
1415
- transactions can now be created without registering UTXOs beforehand (with limited functionality)

lib/Bitcoin/Crypto/Network.pm

+27-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,23 @@ sub register
107107
return $self;
108108
}
109109

110+
signature_for unregister => (
111+
method => Object,
112+
positional => [],
113+
);
114+
115+
sub unregister
116+
{
117+
my ($self) = @_;
118+
119+
Bitcoin::Crypto::Exception::NetworkConfig->raise(
120+
'cannot unregister the default network - set another network as default first'
121+
) if $default_network eq $self->id;
122+
123+
delete $networks{$self->id};
124+
return $self;
125+
}
126+
110127
signature_for set_default => (
111128
method => Object,
112129
positional => [],
@@ -417,6 +434,15 @@ context.
417434
418435
Returns the network instance.
419436
437+
=head2 unregister
438+
439+
my $network_object = $object->unregister()
440+
441+
Does the opposite of L</register>. The network object will no longer be stored
442+
in the module, so it will be destroyed if you let go of its reference.
443+
444+
Can be useful if some of the default networks are interferring with your use case.
445+
420446
=head2 set_default
421447
422448
$network_object = $object->set_default()
@@ -477,7 +503,7 @@ Example:
477503
return $instance->name eq 'Some name';
478504
}
479505
480-
Returns a list of network instances (objects).
506+
Returns a list of network instance ids (strings).
481507
482508
=head1 SEE ALSO
483509

t/07-Network.t

+7
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,12 @@ subtest 'single-network mode works' => sub {
7070
is(!!Bitcoin::Crypto::Network->single_network, !!0, 'single network 2 ok');
7171
};
7272

73+
subtest 'unregistering a network works' => sub {
74+
Bitcoin::Crypto::Network->get('litecoin')->unregister;
75+
76+
ok !Bitcoin::Crypto::Network->find(sub { shift->id eq 'litecoin' }),
77+
'unregistered network not found';
78+
};
79+
7380
done_testing;
7481

0 commit comments

Comments
 (0)