Commit 96e87610 authored by tom's avatar tom

remove difficulty

parent eff73e6c
...@@ -76,7 +76,7 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => { ...@@ -76,7 +76,7 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => {
return ( return (
<> <>
<Hide below="lg"> <Hide below="lg">
<SkeletonTable columns={ [ '12%', '12%', '12%', '14%', '25%', '25%' ] }/> <SkeletonTable columns={ [ '17%', '17%', '16%', '25%', '25%' ] }/>
</Hide> </Hide>
<Show below="lg"> <Show below="lg">
<AddressBlocksValidatedSkeletonMobile/> <AddressBlocksValidatedSkeletonMobile/>
...@@ -99,10 +99,9 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => { ...@@ -99,10 +99,9 @@ const AddressBlocksValidated = ({ addressQuery }: Props) => {
<Table variant="simple" size="sm"> <Table variant="simple" size="sm">
<Thead top={ 80 }> <Thead top={ 80 }>
<Tr> <Tr>
<Th width="12%">Block</Th> <Th width="17%">Block</Th>
<Th width="12%">Age</Th> <Th width="17%">Age</Th>
<Th width="12%">Txn</Th> <Th width="16%">Txn</Th>
<Th width="14%">Difficulty</Th>
<Th width="25%">GasUsed</Th> <Th width="25%">GasUsed</Th>
<Th width="25%" isNumeric>Reward { appConfig.network.currency.symbol }</Th> <Th width="25%" isNumeric>Reward { appConfig.network.currency.symbol }</Th>
</Tr> </Tr>
......
...@@ -30,10 +30,6 @@ const AddressBlocksValidatedListItem = (props: Props) => { ...@@ -30,10 +30,6 @@ const AddressBlocksValidatedListItem = (props: Props) => {
<Text fontWeight={ 500 } flexShrink={ 0 }>Txn</Text> <Text fontWeight={ 500 } flexShrink={ 0 }>Txn</Text>
<Text variant="secondary">{ props.tx_count }</Text> <Text variant="secondary">{ props.tx_count }</Text>
</Flex> </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%"> <Flex columnGap={ 2 } w="100%">
<Text fontWeight={ 500 } flexShrink={ 0 }>Gas used</Text> <Text fontWeight={ 500 } flexShrink={ 0 }>Gas used</Text>
<Text variant="secondary">{ BigNumber(props.gas_used || 0).toFormat() }</Text> <Text variant="secondary">{ BigNumber(props.gas_used || 0).toFormat() }</Text>
......
...@@ -30,10 +30,6 @@ const AddressBlocksValidatedSkeletonMobile = () => { ...@@ -30,10 +30,6 @@ const AddressBlocksValidatedSkeletonMobile = () => {
<Skeleton w="70px"/> <Skeleton w="70px"/>
<Skeleton w="70px"/> <Skeleton w="70px"/>
</Flex> </Flex>
<Flex h={ 6 } columnGap={ 2 }>
<Skeleton w="70px"/>
<Skeleton w="180px"/>
</Flex>
<Flex h={ 6 } columnGap={ 2 }> <Flex h={ 6 } columnGap={ 2 }>
<Skeleton w="100px"/> <Skeleton w="100px"/>
<Skeleton w="120px"/> <Skeleton w="120px"/>
......
...@@ -29,9 +29,6 @@ const AddressBlocksValidatedTableItem = (props: Props) => { ...@@ -29,9 +29,6 @@ const AddressBlocksValidatedTableItem = (props: Props) => {
<Td> <Td>
<Text fontWeight="500">{ props.tx_count }</Text> <Text fontWeight="500">{ props.tx_count }</Text>
</Td> </Td>
<Td>
0.00 TH
</Td>
<Td> <Td>
<Flex alignItems="center" columnGap={ 2 }> <Flex alignItems="center" columnGap={ 2 }>
<Box flexBasis="80px">{ BigNumber(props.gas_used || 0).toFormat() }</Box> <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