diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 19:53:54 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-05-25 19:53:54 +0800 |
commit | 612019f5e7c75210ecdb3d81f4337a5bf16b45e5 (patch) | |
tree | 0ef5c9ad4be18864bbbead9f83f9a32904d88cb5 /src | |
parent | 3fe582d94c587cf3c38b6c42988890dcd6d54659 (diff) | |
download | dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar.gz dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar.bz2 dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar.lz dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar.xz dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.tar.zst dexon-sol-tools-612019f5e7c75210ecdb3d81f4337a5bf16b45e5.zip |
Fix comment
Diffstat (limited to 'src')
-rw-r--r-- | src/ts/0x.js.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ts/0x.js.ts b/src/ts/0x.js.ts index f52750eb6..c0aaa06fa 100644 --- a/src/ts/0x.js.ts +++ b/src/ts/0x.js.ts @@ -18,7 +18,7 @@ const MAX_DIGITS_IN_UNSIGNED_256_INT = 78; export class ZeroEx { /** * Verifies that the elliptic curve signature `signature` was generated - * by signing `data` with the private key corresponding to the `signer` address. + * by signing `data` with the private key corresponding to the `signerETHAddressHex` address. */ public static isValidSignature(dataHex: string, signature: ECSignature, signerETHAddressHex: string): boolean { assert.isHexString('dataHex', dataHex); |