fix batch status

This commit is contained in:
hetao 2020-09-03 21:08:35 +08:00
parent 79e7b9d399
commit 3faad71b99
8 changed files with 27 additions and 41 deletions

View File

@ -889,8 +889,6 @@ class Contract
*/
public function batch($status)
{
$status = is_bool($status);
$this->eth->batch($status);
}
}

View File

@ -173,8 +173,6 @@ class Eth
*/
public function batch($status)
{
$status = is_bool($status);
$this->provider->batch($status);
}
}

View File

@ -173,8 +173,6 @@ class Net
*/
public function batch($status)
{
$status = is_bool($status);
$this->provider->batch($status);
}
}

View File

@ -173,8 +173,6 @@ class Personal
*/
public function batch($status)
{
$status = is_bool($status);
$this->provider->batch($status);
}
}

View File

@ -74,8 +74,6 @@ class HttpProvider extends Provider implements IProvider
*/
public function batch($status)
{
$status = is_bool($status);
$this->isBatch = $status;
}

View File

@ -174,8 +174,6 @@ class Shh
*/
public function batch($status)
{
$status = is_bool($status);
$this->provider->batch($status);
}
}

View File

@ -283,8 +283,6 @@ class Web3
*/
public function batch($status)
{
$status = is_bool($status);
$this->provider->batch($status);
}
}