Compare commits
2 Commits
bd37ec17cc
...
e9a33ae12e
Author | SHA1 | Date | |
---|---|---|---|
|
e9a33ae12e | ||
|
84b4d98c5c |
@ -63,6 +63,6 @@ SatsAllDay,pr,#1095,#728,medium,,,,250k,weareallsatoshi@getalby.com,2024-04-21
|
|||||||
benalleng,pr,#1090,#1077,good-first-issue,,,,20k,benalleng@mutiny.plus,2024-04-28
|
benalleng,pr,#1090,#1077,good-first-issue,,,,20k,benalleng@mutiny.plus,2024-04-28
|
||||||
benalleng,helpfulness,#1087,,,,,informed fix,20k,benalleng@mutiny.plus,2024-04-28
|
benalleng,helpfulness,#1087,,,,,informed fix,20k,benalleng@mutiny.plus,2024-04-28
|
||||||
benalleng,pr,#1099,#794,medium-hard,,,refined in a commit,450k,benalleng@mutiny.plus,2024-04-28
|
benalleng,pr,#1099,#794,medium-hard,,,refined in a commit,450k,benalleng@mutiny.plus,2024-04-28
|
||||||
dillon-co,helpfulness,#1099,#794,medium-hard,,,#988 did much of the legwork,225k,???,???
|
dillon-co,helpfulness,#1099,#794,medium-hard,,,#988 did much of the legwork,225k,bolt11,2024-04-29
|
||||||
abhiShandy,pr,#1119,#1110,good-first-issue,,,,20k,abhishandy@stacker.news,2024-04-28
|
abhiShandy,pr,#1119,#1110,good-first-issue,,,,20k,abhishandy@stacker.news,2024-04-28
|
||||||
felipebueno,issue,#1119,#1110,good-first-issue,,,,2k,felipe@stacker.news,2024-04-28
|
felipebueno,issue,#1119,#1110,good-first-issue,,,,2k,felipe@stacker.news,2024-04-28
|
||||||
|
|
@ -136,6 +136,7 @@ export function LNbitsProvider ({ children }) {
|
|||||||
logger.ok('wallet enabled')
|
logger.ok('wallet enabled')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
logger.error('invalid config:', err)
|
logger.error('invalid config:', err)
|
||||||
|
setStatus(Status.Error)
|
||||||
logger.info('wallet disabled')
|
logger.info('wallet disabled')
|
||||||
throw err
|
throw err
|
||||||
}
|
}
|
||||||
|
@ -145,8 +145,8 @@ export function LNCProvider ({ children }) {
|
|||||||
setStatus(Status.Enabled)
|
setStatus(Status.Enabled)
|
||||||
logger.ok('wallet enabled')
|
logger.ok('wallet enabled')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
setStatus(Status.Error)
|
|
||||||
logger.error('invalid config:', err)
|
logger.error('invalid config:', err)
|
||||||
|
setStatus(Status.Error)
|
||||||
logger.info('wallet disabled')
|
logger.info('wallet disabled')
|
||||||
throw err
|
throw err
|
||||||
} finally {
|
} finally {
|
||||||
@ -181,8 +181,8 @@ export function LNCProvider ({ children }) {
|
|||||||
setConfig({ pairingPhrase: lnc.credentials.pairingPhrase, password: lnc.credentials.password })
|
setConfig({ pairingPhrase: lnc.credentials.pairingPhrase, password: lnc.credentials.password })
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
logger.error('wallet could not be loaded:', err)
|
||||||
setStatus(Status.Error)
|
setStatus(Status.Error)
|
||||||
logger.error('wallet could not be loaded', err)
|
|
||||||
}
|
}
|
||||||
})()
|
})()
|
||||||
}, [setStatus, setConfig, logger])
|
}, [setStatus, setConfig, logger])
|
||||||
|
@ -124,6 +124,8 @@ export function NWCProvider ({ children }) {
|
|||||||
setStatus(Status.Enabled)
|
setStatus(Status.Enabled)
|
||||||
logger.ok('wallet enabled')
|
logger.ok('wallet enabled')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
logger.error('invalid config:', err)
|
||||||
|
setStatus(Status.Error)
|
||||||
logger.info('wallet disabled')
|
logger.info('wallet disabled')
|
||||||
throw err
|
throw err
|
||||||
}
|
}
|
||||||
@ -158,6 +160,7 @@ export function NWCProvider ({ children }) {
|
|||||||
setStatus(Status.Enabled)
|
setStatus(Status.Enabled)
|
||||||
logger.ok('wallet enabled')
|
logger.ok('wallet enabled')
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
logger.error('invalid config:', err)
|
||||||
setStatus(Status.Error)
|
setStatus(Status.Error)
|
||||||
logger.info('wallet disabled')
|
logger.info('wallet disabled')
|
||||||
throw err
|
throw err
|
||||||
|
Loading…
x
Reference in New Issue
Block a user