Browse Source

Fix to prevent app crash on the "abandon" seed

The case where there's no "from" address on an operation shouldn't happen, but on testnet (sh)it happens 👍
master
Thibaut 7 years ago
committed by GitHub
parent
commit
f8b76c0d7e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/components/OperationsList/Operation.js

4
src/components/OperationsList/Operation.js

@ -49,6 +49,10 @@ const OperationRaw = styled(Box).attrs({
`
const Address = ({ value }: { value: string }) => {
if (!value) {
return <Box />
}
const addrSize = value.length / 2
const left = value.slice(0, 10)

Loading…
Cancel
Save