Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

Commit

Permalink
new for legacy compat and consistency
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Crowder <[email protected]>
  • Loading branch information
cheeseandcereal committed Dec 20, 2019
1 parent dae679c commit 9265a46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/signers/ecdsa_signer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ class ECDSASigner implements Signer {
s = (k.modInverse(n) * (e + (d * r))) % n;
} while (s == BigInt.zero);

var signature = ECSignature(r, s);
var signature = new ECSignature(r, s);
if (normalize) signature.normalize(_pvkey.parameters);
return signature;
}
Expand Down

0 comments on commit 9265a46

Please sign in to comment.