Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

Commit

Permalink
chore(go.mod): update taiko-geth version (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtaikocha authored Dec 26, 2023
1 parent 1e26b9e commit d491378
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,4 @@ require (
rsc.io/tmplfunc v0.0.3 // indirect
)

replace github.com/ethereum/go-ethereum v1.13.8 => github.com/taikoxyz/taiko-geth v0.0.0-20231226054604-ae5439d39f69
replace github.com/ethereum/go-ethereum v1.13.8 => github.com/taikoxyz/taiko-geth v0.0.0-20231226125316-3cc6dfc22523
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -402,8 +402,8 @@ github.com/swaggo/swag v1.16.2 h1:28Pp+8DkQoV+HLzLx8RGJZXNGKbFqnuvSbAAtoxiY04=
github.com/swaggo/swag v1.16.2/go.mod h1:6YzXnDcpr0767iOejs318CwYkCQqyGer6BizOg03f+E=
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d h1:vfofYNRScrDdvS342BElfbETmL1Aiz3i2t0zfRj16Hs=
github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d/go.mod h1:RRCYJbIwD5jmqPI9XoAFR0OcDxqUctll6zUj/+B4S48=
github.com/taikoxyz/taiko-geth v0.0.0-20231226054604-ae5439d39f69 h1:AMfPkgONbX4HSVqxGJXcb77Cd/ien7RP4lahDQlkSE4=
github.com/taikoxyz/taiko-geth v0.0.0-20231226054604-ae5439d39f69/go.mod h1:sc48XYQxCzH3fG9BcrXCOOgQk2JfZzNAmIKnceogzsA=
github.com/taikoxyz/taiko-geth v0.0.0-20231226125316-3cc6dfc22523 h1:BEeR+xHf1o8VLZbr78DADfy/qfrKzV7/lhY/KBY2zAo=
github.com/taikoxyz/taiko-geth v0.0.0-20231226125316-3cc6dfc22523/go.mod h1:sc48XYQxCzH3fG9BcrXCOOgQk2JfZzNAmIKnceogzsA=
github.com/thomaso-mirodin/intmath v0.0.0-20160323211736-5dc6d854e46e h1:cR8/SYRgyQCt5cNCMniB/ZScMkhI9nk8U5C7SbISXjo=
github.com/thomaso-mirodin/intmath v0.0.0-20160323211736-5dc6d854e46e/go.mod h1:Tu4lItkATkonrYuvtVjG0/rhy15qrNGNTjPdaphtZ/8=
github.com/tklauser/go-sysconf v0.3.12 h1:0QaGUFOdQaIVdPgfITYzaTegZvdCjmYO52cSFAEVmqU=
Expand Down
6 changes: 3 additions & 3 deletions prover/guardian_prover_sender/guardian_prover.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ func (s *GuardianProverBlockSender) post(ctx context.Context, route string, req

if resp.StatusCode != http.StatusOK {
return fmt.Errorf(
"unable to contract health check server endpoint, status code: %v", resp.StatusCode)
"unable to contact health check server endpoint, status code: %v", resp.StatusCode)
}

return nil
Expand Down Expand Up @@ -100,7 +100,7 @@ func (s *GuardianProverBlockSender) sendSignedBlockReq(
blockID *big.Int,
) error {
if s.healthCheckServerEndpoint == nil {
log.Info("no health check server endpoint set, returning early")
log.Info("No health check server endpoint set, returning early")
return nil
}

Expand Down Expand Up @@ -203,7 +203,7 @@ func (s *GuardianProverBlockSender) SendHeartbeat(ctx context.Context) error {
return err
}

log.Info("successfully sent heartbeat")
log.Info("Successfully sent heartbeat", "signature", common.Bytes2Hex(sig))

return nil
}

0 comments on commit d491378

Please sign in to comment.