lint warnings
This commit is contained in:
parent
6439fe79da
commit
8284537273
@ -1,11 +1,5 @@
|
||||
import { Block } from './block';
|
||||
import {
|
||||
fireEvent,
|
||||
render,
|
||||
screen,
|
||||
waitFor,
|
||||
act,
|
||||
} from '@testing-library/react';
|
||||
import { render, screen, waitFor } from '@testing-library/react';
|
||||
import { MemoryRouter, Route, Routes } from 'react-router-dom';
|
||||
import { Routes as RouteNames } from '../../router-config';
|
||||
|
||||
|
@ -34,6 +34,7 @@ export interface Data {
|
||||
}
|
||||
|
||||
export interface Evidence {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
evidence: any[];
|
||||
}
|
||||
|
||||
|
@ -34,6 +34,7 @@ export interface TransactionData {
|
||||
}
|
||||
|
||||
export interface Evidence {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
evidence: any[];
|
||||
}
|
||||
|
||||
@ -67,6 +68,7 @@ export interface Block {
|
||||
export interface ResultBeginBlock {}
|
||||
|
||||
export interface ResultEndBlock {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
validator_updates?: any;
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@ export interface Event {
|
||||
|
||||
export interface TxResult {
|
||||
code: number;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
data?: any;
|
||||
log: string;
|
||||
info: string;
|
||||
|
@ -11,6 +11,7 @@ export interface Event {
|
||||
|
||||
export interface TxResult {
|
||||
code: number;
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
data?: any;
|
||||
log: string;
|
||||
info: string;
|
||||
|
Loading…
Reference in New Issue
Block a user