-
Notifications
You must be signed in to change notification settings - Fork 490
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
Typo Fix: "Transcation" to "Transaction" #4248
Typo Fix: "Transcation" to "Transaction" #4248
Conversation
config/localTemplate.go
Outdated
// VerifiedTranscationsCacheSize defines the number of transactions that the verified transactions cache would hold before cycling the cache storage in a round-robin fashion. | ||
VerifiedTranscationsCacheSize int `version[14]:"30000"` | ||
// VerifiedTransactionsCacheSize defines the number of transactions that the verified transactions cache would hold before cycling the cache storage in a round-robin fashion. | ||
VerifiedTransactionsCacheSize int `version[14]:"30000"` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, I don't think we can change this one. Since it's in the config file it could break existing configs.
@algorandskiy do you know if there's a way to fix this typo?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We would have to introduce both names, and have one copy its value to the other at startup time, and error if they were both set
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you revert this part of the change and we can fix just the other typos?
Codecov Report
@@ Coverage Diff @@
## master #4248 +/- ##
==========================================
- Coverage 55.35% 55.30% -0.06%
==========================================
Files 395 395
Lines 50143 50143
==========================================
- Hits 27759 27731 -28
- Misses 20011 20035 +24
- Partials 2373 2377 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. |
Summary
Fixed "Transcation" typo
Test Plan