chore: Fix remaining necessary casts

This commit is contained in:
Fabio Berger
2018-10-17 17:36:21 +01:00
parent a31f3b542f
commit 87fabbb943
2 changed files with 9 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
import { AbiDefinition, AbiType, ContractAbi, DataItem } from 'ethereum-types';
import { AbiDefinition, AbiType, ConstructorAbi, ContractAbi, DataItem } from 'ethereum-types';
import * as _ from 'lodash';
import * as web3Abi from 'web3-eth-abi';
@@ -7,7 +7,8 @@ export const encoder = {
const constructorTypes: string[] = [];
_.each(abi, (element: AbiDefinition) => {
if (element.type === AbiType.Constructor) {
_.each(element.inputs, (input: DataItem) => {
const constuctorAbi = element as ConstructorAbi;
_.each(constuctorAbi.inputs, (input: DataItem) => {
constructorTypes.push(input.type);
});
}