mirror of
https://github.com/status-im/web3.js.git
synced 2025-02-23 11:38:12 +00:00
16 lines
575 B
JavaScript
16 lines
575 B
JavaScript
var testMethod = require('./helpers/test.method.js');
|
|
|
|
var method = 'submitWork';
|
|
|
|
var tests = [
|
|
{
|
|
args: ['0x567890abcdef5555', '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef', '0xcdef1234567890abcdef1234567890abcdef0x1234567890abcf1234567890ab'],
|
|
formattedArgs: ['0x567890abcdef5555', '0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef', '0xcdef1234567890abcdef1234567890abcdef0x1234567890abcf1234567890ab'],
|
|
result: true,
|
|
formattedResult: true,
|
|
call: 'eth_'+ method
|
|
}];
|
|
|
|
testMethod.runTests('eth', method, tests);
|
|
|