remove old logs
This commit is contained in:
parent
c0000ebb4e
commit
3b1dae3397
4 changed files with 1 additions and 7 deletions
|
|
@ -1127,8 +1127,6 @@ async function waitForDb() {
|
|||
data: { assetsIds: [assetData.asset_id] },
|
||||
});
|
||||
|
||||
console.log(assetsPricesResponse?.data?.priceRates?.[0]);
|
||||
|
||||
|
||||
return res.json({
|
||||
success: true,
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -55,8 +55,6 @@ function Aliases(props: AliasesPageProps) {
|
|||
);
|
||||
setLoading(false)
|
||||
|
||||
console.log(result)
|
||||
|
||||
if (newFetchId !== fetchIdRef.current) return;
|
||||
|
||||
if (result.sucess === false) return;
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue