Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Goshimmer_without_tipselection
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COLLET Ismael
Goshimmer_without_tipselection
Commits
8bd01e40
Unverified
Commit
8bd01e40
authored
Jun 26, 2020
by
Luca Moser
Committed by
GitHub
Jun 26, 2020
Browse files
Options
Downloads
Patches
Plain Diff
Fixes typos throughout the codebase (#561)
* fixes typos * lets make the dog shut up
parent
7f45a79c
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
21
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/relay-checker/main.go
+2
-2
2 additions, 2 deletions
tools/relay-checker/main.go
with
2 additions
and
2 deletions
tools/relay-checker/main.go
+
2
−
2
View file @
8bd01e40
...
@@ -17,7 +17,7 @@ func testBroadcastData(api *client.GoShimmerAPI) (string, error) {
...
@@ -17,7 +17,7 @@ func testBroadcastData(api *client.GoShimmerAPI) (string, error) {
return
msgID
,
nil
return
msgID
,
nil
}
}
func
testTargetGetMessages
s
(
api
*
client
.
GoShimmerAPI
,
msgID
string
)
error
{
func
testTargetGetMessages
(
api
*
client
.
GoShimmerAPI
,
msgID
string
)
error
{
// query target node for broadcasted data
// query target node for broadcasted data
if
_
,
err
:=
api
.
FindMessageByID
([]
string
{
msgID
});
err
!=
nil
{
if
_
,
err
:=
api
.
FindMessageByID
([]
string
{
msgID
});
err
!=
nil
{
return
fmt
.
Errorf
(
"querying the target node failed: %w"
,
err
)
return
fmt
.
Errorf
(
"querying the target node failed: %w"
,
err
)
...
@@ -56,7 +56,7 @@ func main() {
...
@@ -56,7 +56,7 @@ func main() {
time
.
Sleep
(
time
.
Duration
(
cooldownTime
)
*
time
.
Second
)
time
.
Sleep
(
time
.
Duration
(
cooldownTime
)
*
time
.
Second
)
// query target node
// query target node
err
=
testTargetGetMessages
s
(
api
,
msgID
)
err
=
testTargetGetMessages
(
api
,
msgID
)
if
err
!=
nil
{
if
err
!=
nil
{
fmt
.
Printf
(
"%s
\n
"
,
err
)
fmt
.
Printf
(
"%s
\n
"
,
err
)
break
break
...
...
This diff is collapsed.
Click to expand it.
Prev
1
2
Next
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment