We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In
export interface Block { readonly header: Header; /** * For the block at height 1, last commit is not set. */ readonly lastCommit: Commit | null; readonly txs: readonly Uint8Array[]; readonly evidence?: readonly Evidence[]; }
the evidence field is always set, even if an empty array. There is no need to differentiate between an empty array and undefined.
evidence
The text was updated successfully, but these errors were encountered:
msteiner96
Successfully merging a pull request may close this issue.
In
the
evidence
field is always set, even if an empty array. There is no need to differentiate between an empty array and undefined.The text was updated successfully, but these errors were encountered: