Compare commits

...

2 Commits

Author SHA1 Message Date
Keyan e9a33ae12e
Update awards.csv 2024-04-29 20:05:55 -05:00
ekzyis 84b4d98c5c
Fix missing logger.error and setStatus (#1122) 2024-04-29 11:57:35 -05:00
4 changed files with 7 additions and 3 deletions

View File

@ -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,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
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
felipebueno,issue,#1119,#1110,good-first-issue,,,,2k,felipe@stacker.news,2024-04-28

1 name type pr id issue ids difficulty priority changes requested notes amount receive method date paid
63 benalleng pr #1090 #1077 good-first-issue 20k benalleng@mutiny.plus 2024-04-28
64 benalleng helpfulness #1087 informed fix 20k benalleng@mutiny.plus 2024-04-28
65 benalleng pr #1099 #794 medium-hard refined in a commit 450k benalleng@mutiny.plus 2024-04-28
66 dillon-co helpfulness #1099 #794 medium-hard #988 did much of the legwork 225k ??? bolt11 ??? 2024-04-29
67 abhiShandy pr #1119 #1110 good-first-issue 20k abhishandy@stacker.news 2024-04-28
68 felipebueno issue #1119 #1110 good-first-issue 2k felipe@stacker.news 2024-04-28

View File

@ -136,6 +136,7 @@ export function LNbitsProvider ({ children }) {
logger.ok('wallet enabled')
} catch (err) {
logger.error('invalid config:', err)
setStatus(Status.Error)
logger.info('wallet disabled')
throw err
}

View File

@ -145,8 +145,8 @@ export function LNCProvider ({ children }) {
setStatus(Status.Enabled)
logger.ok('wallet enabled')
} catch (err) {
setStatus(Status.Error)
logger.error('invalid config:', err)
setStatus(Status.Error)
logger.info('wallet disabled')
throw err
} finally {
@ -181,8 +181,8 @@ export function LNCProvider ({ children }) {
setConfig({ pairingPhrase: lnc.credentials.pairingPhrase, password: lnc.credentials.password })
}
} catch (err) {
logger.error('wallet could not be loaded:', err)
setStatus(Status.Error)
logger.error('wallet could not be loaded', err)
}
})()
}, [setStatus, setConfig, logger])

View File

@ -124,6 +124,8 @@ export function NWCProvider ({ children }) {
setStatus(Status.Enabled)
logger.ok('wallet enabled')
} catch (err) {
logger.error('invalid config:', err)
setStatus(Status.Error)
logger.info('wallet disabled')
throw err
}
@ -158,6 +160,7 @@ export function NWCProvider ({ children }) {
setStatus(Status.Enabled)
logger.ok('wallet enabled')
} catch (err) {
logger.error('invalid config:', err)
setStatus(Status.Error)
logger.info('wallet disabled')
throw err