Skip to content

Commit

Permalink
Correct typo in the method name SetBridgeId (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anon-im authored Dec 10, 2024
1 parent f001399 commit 1765f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions executor/celestia/celestia.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ func (c Celestia) ProcessedMsgsToRawKV(msgs []btypes.ProcessedMsgs, delete bool)
return c.node.MustGetBroadcaster().ProcessedMsgsToRawKV(msgs, delete)
}

func (c *Celestia) SetBridgeId(brigeId uint64) {
c.bridgeId = brigeId
func (c *Celestia) SetBridgeId(bridgeId uint64) {
c.bridgeId = bridgeId
}

func (c Celestia) HasKey() bool {
Expand Down

0 comments on commit 1765f4b

Please sign in to comment.