wallet tron transactions
This commit is contained in:
34
app/Bean/Sdk/Wallet/Tron/NowBlockBean.php
Normal file
34
app/Bean/Sdk/Wallet/Tron/NowBlockBean.php
Normal file
@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace App\Bean\Sdk\Wallet\Tron;
|
||||
|
||||
use App\Bean\Model\Base\BaseBean;
|
||||
|
||||
class NowBlockBean extends BaseBean
|
||||
{
|
||||
protected $block_number;
|
||||
protected $block_timestamp;
|
||||
|
||||
public function getBlockNumber()
|
||||
{
|
||||
return $this->block_number;
|
||||
}
|
||||
|
||||
public function setBlockNumber($block_number): void
|
||||
{
|
||||
$this->block_number = $block_number;
|
||||
}
|
||||
|
||||
public function getBlockTimestamp()
|
||||
{
|
||||
return $this->block_timestamp;
|
||||
}
|
||||
|
||||
public function setBlockTimestamp($block_timestamp): void
|
||||
{
|
||||
$this->block_timestamp = $block_timestamp;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user