• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lightningnetwork / lnd / 11954082915

21 Nov 2024 01:20PM UTC coverage: 59.327% (+0.6%) from 58.776%
11954082915

Pull #8754

github

ViktorTigerstrom
itest: wrap deriveCustomScopeAccounts at 80 chars

This commit fixes that word wrapping for the deriveCustomScopeAccounts
function docs, and ensures that it wraps at 80 characters or less.
Pull Request #8754: Add `Outbound` Remote Signer implementation

1940 of 2984 new or added lines in 44 files covered. (65.01%)

226 existing lines in 37 files now uncovered.

135234 of 227947 relevant lines covered (59.33%)

19316.75 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

55.56
/lnwallet/rpcwallet/healthcheck.go
1
package rpcwallet
2

3
import (
4
        "time"
5
)
6

7
// HealthCheck returns a health check function for the given remote signing
8
// configuration.
9
func HealthCheck(rs RemoteSigner, timeout time.Duration) func() error {
4✔
10
        return func() error {
8✔
11
                err := rs.Ping(timeout)
4✔
12
                if err != nil {
4✔
NEW
13
                        log.Errorf("Remote signer health check failed: %v", err)
×
14

×
NEW
15
                        return err
×
NEW
16
                }
×
17

18
                return nil
4✔
19
        }
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc