This repository was archived by the owner on Oct 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ const App = () => {
81
81
}
82
82
83
83
const backupBytes = res . value . multiChanBackup . multiChanBackup ;
84
- console . log ( ' Backup required' ) ;
84
+ console . log ( ` Backup required ( ${ backupBytes . length } bytes)` ) ;
85
85
} ,
86
86
( ) => { } ,
87
87
) ;
@@ -109,7 +109,7 @@ const App = () => {
109
109
Wallet unlocked: { emoji ( lndState . walletUnlocked ) }
110
110
</ Text >
111
111
< Text style = { styles . state } > Ready: { emoji ( lndState . grpcReady ) } </ Text >
112
- < Text style = { { margin : 10 , textAlign : 'center' } } > { message } </ Text >
112
+ < Text style = { styles . message } > { message } </ Text >
113
113
114
114
{ lndState . lndRunning ? (
115
115
< Button
@@ -446,6 +446,10 @@ const styles = StyleSheet.create({
446
446
state : {
447
447
textAlign : 'center' ,
448
448
} ,
449
+ message : {
450
+ margin : 10 ,
451
+ textAlign : 'center' ,
452
+ } ,
449
453
} ) ;
450
454
451
455
export default App ;
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
12
12
import { lnrpc } from './rpc' ;
13
13
import { lnrpc as walletunlocker_lnrpc } from './walletunlocker' ;
14
14
import LndConf from './lnd.conf' ;
15
- import { bytesToHexString , bytesToString , hexStringToBytes , stringToBytes } from './helpers' ;
15
+ import { bytesToHexString , hexStringToBytes , stringToBytes } from './helpers' ;
16
16
import base64 from 'base64-js' ;
17
17
18
18
class LND {
You can’t perform that action at this time.
0 commit comments