Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rafinskipg committed Oct 29, 2021
1 parent 6c5abbd commit d6ee0b4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/dai/src/eth/accounts/factories.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ export function privateKeyAccountFactory({ key }) {
const keyBuffer = Buffer.from(keySansPrefix, 'hex');

const subprovider = new Wallet(
{ getAddressString: () => account.address.toLowerCase(), getPrivateKey: () => keyBuffer },
{
getAddressString: () => account.address.toLowerCase(),
getPrivateKey: () => keyBuffer
},
{}
);

Expand Down

0 comments on commit d6ee0b4

Please sign in to comment.