-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: sczembor <[email protected]>
- Loading branch information
Showing
8 changed files
with
37 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package bitcoin | ||
|
||
import "errors" | ||
|
||
// ErrNoBtcConfig is returned when the btc config is missing. | ||
var ErrNoBtcConfig = errors.New("missing bitcoin node configuration") | ||
|
||
// ErrNoNativeProcessor is returned when the btcProcessor is nil. | ||
var ErrNoBtcProcessor = errors.New("btcProcessor cannot be nil") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package dal | ||
|
||
import "errors" | ||
|
||
// ErrNoDB is returned when the database is nil. | ||
var ErrNoDB = errors.New("database cannot be nil") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package native | ||
|
||
import "errors" | ||
|
||
// ErrNoFetcher is returned when the fetcher is nil. | ||
var ErrNoFetcher = errors.New("sign requests fetcher cannot be nil") | ||
|
||
// ErrNoNativeProcessor is returned when the nativeProcessor is nil. | ||
var ErrNoNativeProcessor = errors.New("nativeProcessor cannot be nil") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters