diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-01 10:08:07 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2017-07-01 10:08:07 +0800 |
commit | 74ef0458f563ab9b82427ce736e90d1e0a922fb3 (patch) | |
tree | 3cc01c9984d1e2be68e2987d05b9be7e1338b22d /src/0x.ts | |
parent | 6a8c54e8decd158c74c588835d7fefaebcfc1df2 (diff) | |
download | dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar.gz dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar.bz2 dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar.lz dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar.xz dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.tar.zst dexon-sol-tools-74ef0458f563ab9b82427ce736e90d1e0a922fb3.zip |
Fix test failures caused by testrpc new eth_sign behaviour
Diffstat (limited to 'src/0x.ts')
-rw-r--r-- | src/0x.ts | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -199,8 +199,9 @@ export class ZeroEx { let msgHashHex; const nodeVersion = await this._web3Wrapper.getNodeVersionAsync(); const isParityNode = utils.isParityNode(nodeVersion); - if (isParityNode) { - // Parity node adds the personalMessage prefix itself + const isTestRpc = utils.isTestRpc(nodeVersion); + if (isParityNode || isTestRpc) { + // Parity and TestRpc nodes add the personalMessage prefix itself msgHashHex = orderHash; } else { const orderHashBuff = ethUtil.toBuffer(orderHash); |