Commit 96e87610 authored by tom's avatar tom

remove difficulty

parent eff73e6c
......@@ -76,7 +76,7 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => {
return (
<>
<Hide below="lg">
<SkeletonTable columns={ [ '12%', '12%', '12%', '14%', '25%', '25%' ] }/>
<SkeletonTable columns={ [ '17%', '17%', '16%', '25%', '25%' ] }/>
</Hide>
<Show below="lg">
<AddressBlocksValidatedSkeletonMobile/>
......@@ -99,10 +99,9 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => {
<Table variant="simple" size="sm">
<Thead top={ 80 }>
<Tr>
<Th width="12%">Block</Th>
<Th width="12%">Age</Th>
<Th width="12%">Txn</Th>
<Th width="14%">Difficulty</Th>
<Th width="17%">Block</Th>
<Th width="17%">Age</Th>
<Th width="16%">Txn</Th>
<Th width="25%">GasUsed</Th>
<Th width="25%" isNumeric>Reward { appConfig.network.currency.symbol }</Th>
</Tr>
......
......@@ -30,10 +30,6 @@ const AddressBlocksValidatedListItem = (props: Props) => {
<Text fontWeight={ 500 } flexShrink={ 0 }>Txn</Text>
<Text variant="secondary">{ props.tx_count }</Text>
</Flex>
<Flex columnGap={ 2 } w="100%">
<Text fontWeight={ 500 } flexShrink={ 0 }>Difficulty</Text>
<Text variant="secondary">0.00 TH</Text>
</Flex>
<Flex columnGap={ 2 } w="100%">
<Text fontWeight={ 500 } flexShrink={ 0 }>Gas used</Text>
<Text variant="secondary">{ BigNumber(props.gas_used || 0).toFormat() }</Text>
......
......@@ -30,10 +30,6 @@ const AddressBlocksValidatedSkeletonMobile = () => {
<Skeleton w="70px"/>
<Skeleton w="70px"/>
</Flex>
<Flex h={ 6 } columnGap={ 2 }>
<Skeleton w="70px"/>
<Skeleton w="180px"/>
</Flex>
<Flex h={ 6 } columnGap={ 2 }>
<Skeleton w="100px"/>
<Skeleton w="120px"/>
......
......@@ -29,9 +29,6 @@ const AddressBlocksValidatedTableItem = (props: Props) => {
<Td>
<Text fontWeight="500">{ props.tx_count }</Text>
</Td>
<Td>
0.00 TH
</Td>
<Td>
<Flex alignItems="center" columnGap={ 2 }>
<Box flexBasis="80px">{ BigNumber(props.gas_used || 0).toFormat() }</Box>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment