Skip to content

Commit

Permalink
rm logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennievon committed Jun 26, 2024
1 parent 51dd192 commit f8557c8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/tenscan/frontend/api/rollups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,10 @@ export const fetchRollupByHash = async (
export const fetchRollupByBatchSequence = async (
seq: string
): Promise<ResponseDataInterface<Rollup>> => {
const res = await httpRequest<ResponseDataInterface<Rollup>>({
return await httpRequest<ResponseDataInterface<Rollup>>({
method: "get",
url: pathToUrl(apiRoutes.getRollupByBatchSequence, { seq }),
});
console.log(res);
return res;
};

export const fetchBatchesInRollups = async (
Expand Down

0 comments on commit f8557c8

Please sign in to comment.