healthcheck: fix missing import

This commit is contained in:
Oliver Gugger 2021-07-28 10:58:41 +02:00
parent 4a6b1f7c82
commit a35031ca2e
No known key found for this signature in database
GPG Key ID: 8E4256593F177720
2 changed files with 5 additions and 2 deletions

View File

@ -59,6 +59,7 @@ you.
* [Bumped version of `github.com/miekg/dns` library to fix a Dependabot
alert](https://github.com/lightningnetwork/lnd/pull/5576).
* [Fixed timeout flakes in async payment benchmark tests](https://github.com/lightningnetwork/lnd/pull/5579).
* [Fixed a missing import and git tag in the healthcheck package](https://github.com/lightningnetwork/lnd/pull/5582).
## Database

View File

@ -1,13 +1,15 @@
package healthcheck
import "fmt"
// AvailableDiskSpaceRatio returns ratio of available disk space to total
// capacity.
func AvailableDiskSpaceRatio(path string) (float64, error) {
func AvailableDiskSpaceRatio(_ string) (float64, error) {
return 0, fmt.Errorf("disk space check not supported in WebAssembly")
}
// AvailableDiskSpace returns the available disk space in bytes of the given
// file system.
func AvailableDiskSpace(path string) (uint64, error) {
func AvailableDiskSpace(_ string) (uint64, error) {
return 0, fmt.Errorf("disk space check not supported in WebAssembly")
}