aboutsummaryrefslogtreecommitdiffstats
path: root/web3.eth.estimateGas.js
diff options
context:
space:
mode:
Diffstat (limited to 'web3.eth.estimateGas.js')
-rw-r--r--web3.eth.estimateGas.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/web3.eth.estimateGas.js b/web3.eth.estimateGas.js
deleted file mode 100644
index efa6bf31..00000000
--- a/web3.eth.estimateGas.js
+++ /dev/null
@@ -1,25 +0,0 @@
-var web3 = require('../index');
-var testMethod = require('./helpers/test.method.js');
-
-var method = 'estimateGas';
-
-var tests = [{
- args: [{
- to: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
- data: '0x23455654',
- gas: 11,
- gasPrice: 11
- }],
- formattedArgs: [{
- to: '0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b',
- data: '0x23455654',
- gas: '0xb',
- gasPrice: '0xb'
- }],
- result: '0x31981',
- formattedResult: 203137,
- call: 'eth_'+ method
-}];
-
-testMethod.runTests('eth', method, tests);
-