Port over signOrderHashAsync

This commit is contained in:
Fabio Berger
2017-05-29 13:37:08 +02:00
parent 232e031959
commit eb90367fc4
5 changed files with 73 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import * as _ from 'lodash';
import * as BN from 'bn.js';
export const utils = {
@@ -15,4 +16,7 @@ export const utils = {
console.log(message);
/* tslint:enable */
},
isParityNode(nodeVersion: string): boolean {
return _.includes(nodeVersion, 'Parity');
},
};