File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl<'a> InvoiceRequestBuilder<'a> {
108
108
}
109
109
110
110
#[ cfg( test) ]
111
- pub fn chain_unchecked ( mut self , network : Network ) -> Self {
111
+ fn chain_unchecked ( mut self , network : Network ) -> Self {
112
112
let chain = ChainHash :: using_genesis_block ( network) ;
113
113
self . invoice_request . chain = Some ( chain) ;
114
114
self
@@ -129,7 +129,7 @@ impl<'a> InvoiceRequestBuilder<'a> {
129
129
}
130
130
131
131
#[ cfg( test) ]
132
- pub fn amount_msats_unchecked ( mut self , amount_msats : u64 ) -> Self {
132
+ fn amount_msats_unchecked ( mut self , amount_msats : u64 ) -> Self {
133
133
self . invoice_request . amount_msats = Some ( amount_msats) ;
134
134
self
135
135
}
@@ -154,7 +154,7 @@ impl<'a> InvoiceRequestBuilder<'a> {
154
154
}
155
155
156
156
#[ cfg( test) ]
157
- pub fn quantity_unchecked ( mut self , quantity : u64 ) -> Self {
157
+ fn quantity_unchecked ( mut self , quantity : u64 ) -> Self {
158
158
self . invoice_request . quantity = Some ( quantity) ;
159
159
self
160
160
}
You can’t perform that action at this time.
0 commit comments