Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(taiko-client): fix docs #18698

Merged
merged 2 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/taiko-client/driver/signer/fixed_k_signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var (
zero32 [32]byte
)

// FixedKSigner is a ethereum ECDSA signer who always sign payload with the given K value.
// FixedKSigner is an ethereum ECDSA signer who always sign payload with the given K value.
// In theory K value is randomly selected in ECDSA algorithm's step 3:
// https://en.wikipedia.org/wiki/Elliptic_Curve_Digital_Signature_Algorithm,
// but here we use a fixed K value instead.
Expand Down
2 changes: 1 addition & 1 deletion packages/taiko-client/internal/testutils/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (s *ClientTestSuite) ProposeAndInsertEmptyBlocks(
return metadataList
}

// ProposeAndInsertValidBlock proposes an valid tx list and then insert it
// ProposeAndInsertValidBlock proposes a valid tx list and then insert it
// into L2 execution engine's local chain.
func (s *ClientTestSuite) ProposeAndInsertValidBlock(
proposer Proposer,
Expand Down
2 changes: 1 addition & 1 deletion packages/taiko-client/pkg/rpc/dial.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/ethereum/go-ethereum/rpc"
)

// DialClientWithBackoff connects a ethereum RPC client at the given URL with
// DialClientWithBackoff connects an ethereum RPC client at the given URL with
// a backoff strategy. Added a retry limit so it doesn't retry endlessly
func DialClientWithBackoff(
ctx context.Context,
Expand Down
Loading