Define CallOpts type

This commit is contained in:
Leonid Logvinov
2017-09-08 12:02:37 +02:00
parent 6999e15972
commit aaae22642e
2 changed files with 5 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ import {
CreateContractEvent,
ContractEventEmitter,
ContractEventObj,
CallOpts,
} from '../types';
const ALLOWANCE_TO_ZERO_GAS_AMOUNT = 47155;

View File

@@ -419,3 +419,7 @@ export interface Artifact {
address: string;
}};
}
export interface CallOpts {
defaultBlock?: Web3.BlockParam;
}