fix: remove destructive migrate rewrite, add replay source attribution and warning drain

This commit is contained in:
John Dvorak
2026-05-22 11:41:43 -07:00
parent 1de735ee08
commit 6e4656add5
6 changed files with 50 additions and 31 deletions
+4
View File
@@ -40,6 +40,8 @@ export interface VerifyFailure {
artifactPath?: string
formula?: string
category?: string
/** Source of the contract: 'route' or 'plugin:name' */
source?: string
}
export interface VerifyRunResult {
@@ -649,6 +651,7 @@ export async function runVerify(deps: VerifyRunnerDeps): Promise<VerifyRunResult
observed: diagnostic.observed,
formula: diagnostic.formula,
category: diagnostic.category,
source: route.formulaSources?.[formula],
})
} else {
passedCount++
@@ -664,6 +667,7 @@ export async function runVerify(deps: VerifyRunnerDeps): Promise<VerifyRunResult
observed: diagnostic.observed,
formula: diagnostic.formula,
category: diagnostic.category,
source: route.formulaSources?.[formula],
})
}
}