wallet tron transactions
This commit is contained in:
25
app/Bean/Queue/Wallet/QueueWalletBlockTransactionBean.php
Normal file
25
app/Bean/Queue/Wallet/QueueWalletBlockTransactionBean.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Bean\Queue\Wallet;
|
||||
|
||||
use App\Bean\Queue\QueueBaseBean;
|
||||
|
||||
class QueueWalletBlockTransactionBean extends QueueBaseBean
|
||||
{
|
||||
const QUEUE_NAME = 'queue_wallet_block_transaction';
|
||||
|
||||
protected array $data = [];
|
||||
|
||||
public function getData(): array
|
||||
{
|
||||
return $this->data;
|
||||
}
|
||||
|
||||
public function setData(array $data): void
|
||||
{
|
||||
$this->data = $data;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user