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
{{ message }}
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
`Found mismatching block at: ${rowResult.height} because ${matchingRow["height"]} != ${rowResult.height}`
.
I found this by replacing the line with Found mismatching block at: ${rowResult.height.toString()} because ${typeof(matchingRow["height"])}:${matchingRow["height"]} != ${typeof(rowResult.height)}:${rowResult.height} to display the types.
rowResult is an object, and equality with it compares false.
The text was updated successfully, but these errors were encountered:
I'm getting this line raised erroneously due to mismatching types of the compared values.
vartex/src/database/sync.ts
Line 212 in c3090ba
I found this by replacing the line with
Found mismatching block at: ${rowResult.height.toString()} because ${typeof(matchingRow["height"])}:${matchingRow["height"]} != ${typeof(rowResult.height)}:${rowResult.height}
to display the types.rowResult is an
object
, and equality with it compares false.The text was updated successfully, but these errors were encountered: