Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vsubhuman committed Nov 2, 2024
1 parent 5747746 commit 45609c5
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import { RustModule } from './rustLoader';
import { bytesToHex, hexToBytes } from '../../../../coreUtils';
import { isHex } from '@emurgo/yoroi-lib/dist/internals/utils/index';

export function v4PublicToV2(
v4Key: RustModule.WalletV4.Bip32PublicKey
Expand Down Expand Up @@ -76,8 +75,7 @@ export function dRepToMaybeCredentialHex(s: string):
.from_scripthash(Module.WalletV4.ScriptHash.from_bech32(s)).to_hex();
return { type: 'ok', credential };
}
} catch {
} // eslint-disable-line no-empty
} catch {} // eslint-disable-line no-empty
return { type: 'invalid' };
})
}
Expand Down

0 comments on commit 45609c5

Please sign in to comment.