Skip to content

Commit 320bd37

Browse files
Merge pull request #112 from multiversx/fix-workflows
Fix workflows, fix lint warning
2 parents fc8f598 + e60f87f commit 320bd37

6 files changed

Lines changed: 2 additions & 17 deletions

File tree

.github/workflows/code-coverage.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
name: Code-coverage
22

33
on:
4-
push:
5-
branches:
6-
- main
74
pull_request:
8-
branches: [ main, feat/* ]
9-
105
workflow_dispatch:
116

127
jobs:

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: "CodeQL"
22

33
on:
44
pull_request:
5-
branches: [development]
6-
types: [opened, ready_for_review]
7-
push:
85
workflow_dispatch:
96

107
permissions:

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
name: golangci-lint
22
on:
3-
push:
4-
branches:
5-
- main
63
pull_request:
7-
branches: [ main, feat/* ]
4+
workflow_dispatch:
85

96
permissions:
107
contents: read

.github/workflows/pr-build.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: Go
22

33
on:
44
pull_request:
5-
branches: [development]
6-
types: [opened, ready_for_review]
7-
push:
85
workflow_dispatch:
96

107
jobs:

server/services/errors.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,5 @@ func (factory *errFactory) getPrototypeByCode(code errCode) errPrototype {
199199
return factory.prototypesMap[ErrUnknown]
200200
}
201201

202-
var errEventNotFound = errors.New("transaction event not found")
203202
var errCannotRecognizeEvent = errors.New("cannot recognize transaction event")
204203
var errCannotParseRelayedV1 = errors.New("cannot parse relayed V1 transaction")

version/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ const (
77

88
var (
99
// RosettaMiddlewareVersion is the version of this package (application)
10-
RosettaMiddlewareVersion = "v0.5.1"
10+
RosettaMiddlewareVersion = "v0.5.2"
1111
)

0 commit comments

Comments
 (0)