File tree Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Expand file tree Collapse file tree 4 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ const ldkLabels = [
30
30
'bolt11_invoices' ,
31
31
'channel_opened_with_custom_keys_manager' ,
32
32
'confirmed_watch_outputs' ,
33
+ 'addresses' ,
33
34
] ;
34
35
const bitkitLabels = [
35
36
'bitkit_settings' ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @synonymdev/react-native-ldk" ,
3
3
"title" : " React Native LDK" ,
4
- "version" : " 0.0.145 " ,
4
+ "version" : " 0.0.146 " ,
5
5
"description" : " React Native wrapper for LDK" ,
6
6
"main" : " ./dist/index.js" ,
7
7
"types" : " ./dist/index.d.ts" ,
Original file line number Diff line number Diff line change @@ -1953,7 +1953,7 @@ class LightningManager {
1953
1953
return await ldk . writeToFile ( {
1954
1954
fileName : ELdkFiles . peers ,
1955
1955
content : JSON . stringify ( peers ) ,
1956
- remotePersist : false ,
1956
+ remotePersist : true ,
1957
1957
} ) ;
1958
1958
} ;
1959
1959
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ export enum ELdkFiles {
489
489
payments_claimed = 'payments_claimed.json' , // Written in swift/kotlin and read from JS
490
490
payments_sent = 'payments_sent.json' , // Written in swift/kotlin and read from JS
491
491
bolt11_invoices = 'bolt11_invoices.json' , // Saved/read from JS
492
- addresses = 'addresses.json' ,
492
+ addresses = 'addresses.json' , // Saved/read from JS
493
493
confirmed_watch_outputs = 'confirmed_watch_outputs.json' ,
494
494
}
495
495
You can’t perform that action at this time.
0 commit comments