-
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.
Merge branch 'stan/78-cmd' of https://github.com/gonative-cc/relayer …
…into stan/78-cmd
- Loading branch information
Showing
10 changed files
with
46 additions
and
45 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
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