-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v1.3-dev' into fix/lint
- Loading branch information
Showing
123 changed files
with
276 additions
and
2,275 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
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 |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
|
@@ -54,7 +54,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
|
@@ -79,7 +79,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -23,19 +23,19 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
|
||
- uses: actions/checkout@v4 | ||
|
||
- name: "Check generated mocks" | ||
run: | | ||
set -euo pipefail | ||
readonly MOCKERY=2.46.2 # N.B. no leading "v" | ||
readonly MOCKERY=2.46.3 # N.B. no leading "v" | ||
curl -sL "https://github.com/vektra/mockery/releases/download/v${MOCKERY}/mockery_${MOCKERY}_Linux_x86_64.tar.gz" | tar -C /usr/local/bin -xzf - | ||
make mockery 2>/dev/null | ||
if ! git diff --stat --exit-code ; then | ||
if ! git diff --exit-code ; then | ||
echo ">> ERROR:" | ||
echo ">>" | ||
echo ">> Generated mocks require update (either Mockery or source files may have changed)." | ||
|
@@ -49,7 +49,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -29,7 +29,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/[email protected] | ||
|
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
submodules: true | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "^1.23" | ||
go-version: "^1.23.2" | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
PATTERNS: | | ||
|
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
|
||
- name: Build | ||
uses: goreleaser/goreleaser-action@v6 | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
go-version: "1.23" | ||
go-version: "1.23.2" | ||
- uses: actions/checkout@v4 | ||
- uses: technote-space/get-diff-action@v6 | ||
with: | ||
|
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,71 @@ | ||
--- | ||
with-expecter: false | ||
dir: "{{.InterfaceDir}}/mocks" | ||
mockname: "{{.InterfaceName}}" | ||
outpkg: "mocks" | ||
filename: "{{.InterfaceName | lower}}.go" | ||
log-level: "warn" | ||
disable-version-string: true | ||
all: false | ||
packages: | ||
github.com/dashpay/tenderdash/abci/client: | ||
interfaces: | ||
Client: | ||
github.com/dashpay/tenderdash/abci/types: | ||
interfaces: | ||
Application: | ||
github.com/dashpay/tenderdash/dash/core: | ||
interfaces: | ||
Client: | ||
github.com/dashpay/tenderdash/internal/consensus: | ||
interfaces: | ||
Gossiper: | ||
github.com/dashpay/tenderdash/internal/consensus/versioned/selectproposer: | ||
interfaces: | ||
ProposerSelector: | ||
github.com/dashpay/tenderdash/internal/evidence: | ||
interfaces: | ||
BlockStore: | ||
github.com/dashpay/tenderdash/internal/mempool: | ||
interfaces: | ||
Mempool: | ||
github.com/dashpay/tenderdash/internal/p2p: | ||
interfaces: | ||
Transport: | ||
Connection: | ||
Channel: | ||
github.com/dashpay/tenderdash/internal/p2p/client: | ||
interfaces: | ||
Client: | ||
BlockClient: | ||
SnapshotClient: | ||
github.com/dashpay/tenderdash/internal/state: | ||
interfaces: | ||
BlockStore: | ||
EvidencePool: | ||
Executor: | ||
Store: | ||
github.com/dashpay/tenderdash/internal/state/indexer: | ||
interfaces: | ||
EventSink: | ||
github.com/dashpay/tenderdash/internal/statesync: | ||
interfaces: | ||
StateProvider: | ||
github.com/dashpay/tenderdash/libs/store: | ||
interfaces: | ||
Store: | ||
github.com/dashpay/tenderdash/light/provider: | ||
interfaces: | ||
Provider: | ||
github.com/dashpay/tenderdash/light/rpc: | ||
interfaces: | ||
LightClient: | ||
github.com/dashpay/tenderdash/rpc/client: | ||
interfaces: | ||
Client: | ||
RemoteClient: | ||
github.com/dashpay/tenderdash/types: | ||
interfaces: | ||
Store: | ||
PrivValidator: | ||
BlockEventPublisher: |
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
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
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
Oops, something went wrong.