File tree 3 files changed +35
-1
lines changed
3 files changed +35
-1
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ Revision history for Perl extension Bitcoin::Crypto.
9
9
- Bitcoin::Crypto::BIP44::get_derivation_path method (getting internal representation of BIP44 path)
10
10
- Bitcoin::Crypto::Network::single_network class method (single-network mode)
11
11
- Bitcoin::Crypto::Network::set_single method
12
+ - Bitcoin::Crypto::Network::unregister method
12
13
13
14
[Improvements]
14
15
- transactions can now be created without registering UTXOs beforehand (with limited functionality)
Original file line number Diff line number Diff line change @@ -107,6 +107,23 @@ sub register
107
107
return $self ;
108
108
}
109
109
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
+
110
127
signature_for set_default => (
111
128
method => Object,
112
129
positional => [],
@@ -417,6 +434,15 @@ context.
417
434
418
435
Returns the network instance.
419
436
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
+
420
446
=head2 set_default
421
447
422
448
$network_object = $object->set_default()
@@ -477,7 +503,7 @@ Example:
477
503
return $instance->name eq 'Some name';
478
504
}
479
505
480
- Returns a list of network instances (objects ).
506
+ Returns a list of network instance ids (strings ).
481
507
482
508
=head1 SEE ALSO
483
509
Original file line number Diff line number Diff line change @@ -70,5 +70,12 @@ subtest 'single-network mode works' => sub {
70
70
is(!!Bitcoin::Crypto::Network-> single_network, !!0, ' single network 2 ok' );
71
71
};
72
72
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
+
73
80
done_testing;
74
81
You can’t perform that action at this time.
0 commit comments