Skip to content

Commit

Permalink
fix: typos in default config and log
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan-Ethernal committed Feb 19, 2025
1 parent 059e33a commit 6ee2d06
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aggsender/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func (c Config) String() string {
"DryRun: " + fmt.Sprintf("%t", c.DryRun) + "\n" +
"EnableRPC: " + fmt.Sprintf("%t", c.EnableRPC) + "\n" +
"CheckStatusCertificateInterval: " + c.CheckStatusCertificateInterval.String() + "\n" +
"RetryCertInmediatlyAfterInError: " + fmt.Sprintf("%t", c.RetryCertAfterInError) + "\n" +
"RetryCertImmediatelyAfterInError: " + fmt.Sprintf("%t", c.RetryCertAfterInError) + "\n" +
"MaxSubmitRate: " + c.MaxSubmitCertificateRate.String() + "\n" +
"MaxEpochPercentageAllowedToSendCertificate: " +
fmt.Sprintf("%d", c.MaxEpochPercentageAllowedToSendCertificate) + "\n"
Expand Down
6 changes: 3 additions & 3 deletions config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ WriteTimeout = "2s"
MaxRequestsPerIPAndSecond = 10
[ClaimSponsor]
DBPath = "{{PathRWData}}/claimsopnsor.sqlite"
Enabled = false
DBPath = "{{PathRWData}}/claimsponsor.sqlite"
Enabled = true
SenderAddr = "0xfa3b44587990f97ba8b6ba7e230a5f0e95d14b3d"
BridgeAddrL2 = "0xB7098a13a48EcE087d3DA15b2D28eCE0f89819B8"
MaxGas = 200000
Expand All @@ -152,7 +152,7 @@ GasOffset = 0
GetReceiptMaxTime = "250ms"
GetReceiptWaitInterval = "1s"
PrivateKeys = [
{Path = "/app/keystore/claimsopnsor.keystore", Password = "testonly"},
{Path = "/app/keystore/claimsponsor.keystore", Password = "testonly"},
]
ForcedGas = 0
GasPriceMarginFactor = 1
Expand Down

0 comments on commit 6ee2d06

Please sign in to comment.