remove old logs

This commit is contained in:
jejolare 2025-04-28 17:52:10 +07:00
parent c0000ebb4e
commit 3b1dae3397
4 changed files with 1 additions and 7 deletions

View file

@ -1127,8 +1127,6 @@ async function waitForDb() {
data: { assetsIds: [assetData.asset_id] },
});
console.log(assetsPricesResponse?.data?.priceRates?.[0]);
return res.json({
success: true,

View file

@ -30,7 +30,6 @@ function TransactionPool({
socket.on("get_transaction_pool_info", (data: string) => {
try {
const parsedData = JSON.parse(data);
console.log(parsedData);
setPoolElements(parsedData);
} catch (error) {

View file

@ -55,8 +55,6 @@ function Aliases(props: AliasesPageProps) {
);
setLoading(false)
console.log(result)
if (newFetchId !== fetchIdRef.current) return;
if (result.sucess === false) return;

View file

@ -81,8 +81,7 @@ class Utils {
static transformToBlocks(result: any, reverse: boolean = false, hashField: boolean = false): Block[] {
if (result.sucess === false) return [];
if (!(result instanceof Array)) return [];
console.log(result);
return (reverse ? result.reverse() : result).map((e: any) => ({
height: e.height,
type: e.type === '0' ? "PoS" : "PoW",