Skip to content

Commit

Permalink
Merge pull request #738 from eco-stake/fix-slip-override
Browse files Browse the repository at this point in the history
Use EthSigner when slip44 overridden to 60
  • Loading branch information
tombeynon authored Jun 12, 2023
2 parents f1ed71b + d3be332 commit 729f156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/autostake/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default function Autostake(mnemonic, opts) {
hdPaths: [hdPath]
});

if (network.slip44 === 60) {
if (slip44 === 60) {
const ethSigner = EthWallet.fromMnemonic(mnemonic);
signer = EthSigner(signer, ethSigner, network.prefix)
}
Expand Down

0 comments on commit 729f156

Please sign in to comment.