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
After this PR, BlockHashCount should be exposed in the metadata. This is the maximum validity period in blocks. There should be some check, like:
if BlockHashCount in metadata {
// ensure validityPeriod < BlockHashCount
} else {
// log "Warning: maximum validity period unknown for this chain..."
}
After this PR,
BlockHashCountshould be exposed in the metadata. This is the maximum validity period in blocks. There should be some check, like: