From 1765f4bb3d9976abf70c6aae0ca5dc7131551866 Mon Sep 17 00:00:00 2001 From: Anonim Date: Tue, 10 Dec 2024 07:44:46 +0300 Subject: [PATCH] Correct typo in the method name SetBridgeId (#57) --- executor/celestia/celestia.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executor/celestia/celestia.go b/executor/celestia/celestia.go index ffe5835..710872d 100644 --- a/executor/celestia/celestia.go +++ b/executor/celestia/celestia.go @@ -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 {