You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many "Uninitialized_value" errors, of which the ones I've examined so far all appear spurious to me. I expect some spurious errors to be inevitable, but I'll note these for your consideration even if they end up being no-action ones.
In some cases, it appears not to have realized that a variable was being declared and initialized at the same time:
Uninitialized_value
The value read from trimmed was never initialized.
src/.../Scheduler.cpp 178:5
Today I analyzed the following branch:
https://github.com/rokopt/stellar-core/tree/muse-dev-experiments
With the following results:
https://console.muse.dev/result/rokopt/stellar-core/01EKJR98Y8YSJBQDV5J6PGRHBN?tab=results
There are many "Uninitialized_value" errors, of which the ones I've examined so far all appear spurious to me. I expect some spurious errors to be inevitable, but I'll note these for your consideration even if they end up being no-action ones.
In some cases, it appears not to have realized that a variable was being declared and initialized at the same time:
https://github.com/rokopt/stellar-core/blob/6692d6ab8f91d7bd8085b1786f04c7a606c134e1/src/util/Scheduler.cpp#L178:
In some, it doesn't notice that a variable is initialized in both branches of an
if
:https://github.com/rokopt/stellar-core/blob/6692d6ab8f91d7bd8085b1786f04c7a606c134e1/src/transactions/SponsorshipUtils.cpp#L814:
And similarly with a
case
:https://github.com/rokopt/stellar-core/blob/6692d6ab8f91d7bd8085b1786f04c7a606c134e1/src/scp/BallotProtocol.cpp#L1578:
The text was updated successfully, but these errors were encountered: