Skip to content

Commit

Permalink
Merge branch 'development' into eclesio/prosp-para-design
Browse files Browse the repository at this point in the history
  • Loading branch information
EclesioMeloJunior authored Dec 10, 2024
2 parents 70a92ad + ff33dc5 commit b5d65c5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/epic.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Epic
about:
about: Template for Epic type of issue
title: 'collection of business/tech scope'
labels: 'Epic'
assignees: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/investigation_or_research.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Investigation
about:
about: Template for issues that requires investigation or research
title: ' Investigate/ Research on ...'
labels: 'T-investigation'
assignees: ''
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/software_design.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: Software Design
about:
about: Template for issues that is a requirement for software design
title: 'Design ...'
labels: 'T-design'
assignees: ''
Expand Down
2 changes: 1 addition & 1 deletion cmd/gossamer/commands/account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ func TestAccountImport(t *testing.T) {
require.NoError(t, err)
}

// TestAccountImport test "gossamer account import-raw --password --key"
// TestAccountImportRaw test "gossamer account import-raw --password --key"
func TestAccountImportRaw(t *testing.T) {
testDir := t.TempDir()
directory := fmt.Sprintf("--keystore-path=%s", testDir)
Expand Down
2 changes: 1 addition & 1 deletion dot/network/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func isInbound(stream libp2pnetwork.Stream) bool {
return stream.Stat().Direction == libp2pnetwork.DirInbound
}

// stringToAddrInfos converts a single string peer id to AddrInfo
// stringToAddrInfo converts a single string peer id to AddrInfo
func stringToAddrInfo(s string) (peer.AddrInfo, error) {
maddr, err := multiaddr.NewMultiaddr(s)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion dot/state/grandpa.go
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ func (s *GrandpaState) IncrementSetID() (newSetID uint64, err error) {
return newSetID, nil
}

// setSetIDChangeAtBlock sets a set ID change at a certain block
// setChangeSetIDAtBlock sets a set ID change at a certain block
func (s *GrandpaState) setChangeSetIDAtBlock(setID uint64, number uint) error {
return s.db.Put(setIDChangeKey(setID), common.UintToBytes(number))
}
Expand Down

0 comments on commit b5d65c5

Please sign in to comment.