Skip to content

Commit

Permalink
fix: log address as hex
Browse files Browse the repository at this point in the history
  • Loading branch information
coreyar committed Jan 4, 2025
1 parent d945e74 commit 22bfbb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subgraphs/isolated-pools/src/operations/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
export const getPool = (comptroller: Address): Pool | null => {
const pool = Pool.load(getPoolId(comptroller));
if (!pool) {
log.error('Pool {} not found', [comptroller.toString()]);
log.error('Pool {} not found', [comptroller.toHexString()]);
}
return pool as Pool;
};
Expand Down

0 comments on commit 22bfbb7

Please sign in to comment.