Skip to content

Commit

Permalink
fix: update strategy diff
Browse files Browse the repository at this point in the history
  • Loading branch information
sendra committed Jul 30, 2024
1 parent b2781b8 commit ca223ab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/reports/diff-reports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ export async function diffReports<A extends AaveV3Snapshot, B extends AaveV3Snap
const preIrHash = hash(pre.strategies[reserveKey]);
const postIrHash = hash(post.strategies[reserveKey]);
if (preIrHash !== postIrHash) {
console.log('pre strategy: ', pre.strategies[reserveKey])
console.log('post strategy: ', post.strategies[reserveKey])
report += renderStrategyDiff(
diff(pre.strategies[reserveKey], post.strategies[reserveKey]) as any,
);
Expand Down

0 comments on commit ca223ab

Please sign in to comment.