This commit is contained in:
sc0Vu 2017-12-14 17:32:46 +08:00
parent bda39d4e3a
commit 70d015961d
2 changed files with 46 additions and 0 deletions

View File

@ -143,6 +143,18 @@ class Eth
] ]
] ]
], ],
'eth_call' => [
'params' => [
[
'validators' => TransactionValidator::class
], [
'default' => 'latest',
'validators' => [
QuantityValidator::class, TagValidator::class
]
]
]
],
]; ];
/** /**

View File

@ -465,6 +465,40 @@ class EthTest extends TestCase
}); });
} }
/**
* testCall
*
* @return void
*/
public function testCall()
{
$eth = $this->web3->eth;
$eth->call([
'from' => "0xb60e8dd61c5d32be8058bb8eb970870f07233155",
'to' => "0xd46e8dd67c5d32be8058bb8eb970870f07244567",
'gas' => "0x76c0",
'gasPrice' => "0x9184e72a000",
'value' => "0x9184e72a",
'data' => "0xd46e8dd67c5d32be8d46e8dd67c5d32be8058bb8eb970870f072445675058bb8eb970870f072445675"
], function ($err, $transaction) {
if ($err !== null) {
// infura banned us to send transaction
return $this->assertTrue($err->getCode() === 405);
}
if (isset($transaction->result)) {
$this->assertTrue(is_string($transaction->result));
} else {
if (isset($transaction->error)) {
// it's just test hex.
$this->assertTrue(is_string($transaction->error->message));
} else {
$this->assertTrue(true);
}
}
});
}
/** /**
* testUnallowedMethod * testUnallowedMethod
* *