Skip to content

Commit

Permalink
Update client code for 10c39cdc58e12267ae395de0ce9b944cb7f3b006 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
goplusbot authored Jun 2, 2023
1 parent 8924f5a commit 804a904
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/client/Model/ResponseWrapperGetDefiInfoResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class ResponseWrapperGetDefiInfoResult implements ModelInterface, ArrayAccess
'is_open_source' => 'int',
'blacklist' => 'int',
'contract_name' => 'string',
'selfdestruct' => 'string',
'selfdestruct' => 'int',
'is_proxy' => 'int',
'approval_abuse' => 'int' ];

Expand All @@ -79,7 +79,7 @@ class ResponseWrapperGetDefiInfoResult implements ModelInterface, ArrayAccess
'is_open_source' => 'int32',
'blacklist' => 'int32',
'contract_name' => null,
'selfdestruct' => null,
'selfdestruct' => 'int32',
'is_proxy' => 'int32',
'approval_abuse' => 'int32' ];

Expand Down Expand Up @@ -392,7 +392,7 @@ public function setContractName($contract_name)
/**
* Gets selfdestruct
*
* @return string
* @return int
*/
public function getSelfdestruct()
{
Expand All @@ -402,7 +402,7 @@ public function getSelfdestruct()
/**
* Sets selfdestruct
*
* @param string $selfdestruct It describes whether this contract can self destruct. \"1\" means true; \"0\" means false; “-1” means unknown.
* @param int $selfdestruct It describes whether this contract can self destruct. \"1\" means true; \"0\" means false; “-1” means unknown.
*
* @return $this
*/
Expand Down

0 comments on commit 804a904

Please sign in to comment.