mirror of https://github.com/embarklabs/embark.git
parent
f4bca2710f
commit
7812951164
|
@ -1,4 +1,5 @@
|
|||
const asciiTable = require('ascii-table');
|
||||
const ethAbi = require('web3-eth-abi');
|
||||
|
||||
class Profiler {
|
||||
constructor(embark) {
|
||||
|
@ -36,6 +37,17 @@ class Profiler {
|
|||
return paramString;
|
||||
}
|
||||
|
||||
generateGasEstimation(method) {
|
||||
|
||||
}
|
||||
|
||||
generateRandomType(type) {
|
||||
switch(type) {
|
||||
case "uint256":
|
||||
case "uint"
|
||||
}
|
||||
}
|
||||
|
||||
registerConsoleCommand() {
|
||||
const self = this;
|
||||
self.embark.registerConsoleCommand((cmd, _options) => {
|
||||
|
|
Loading…
Reference in New Issue