|
@@ -82,6 +82,15 @@ class ChainLogic
|
|
|
]);
|
|
|
}
|
|
|
|
|
|
+ public function buy(GoodsHash $goodsHash,Users $toUser){
|
|
|
+ $hash=$this->request('transfer',[
|
|
|
+ 'from'=>$this->getMainAccount(),
|
|
|
+ 'to' =>$toUser['wallet_address'],
|
|
|
+ 'tokenId' =>$goodsHash['token_id'],
|
|
|
+ ]);
|
|
|
+ return $hash;
|
|
|
+ }
|
|
|
+
|
|
|
protected function record($api,$params,$result){
|
|
|
$dir=sprintf('%s/chainlog',RUNTIME_PATH);
|
|
|
if(!is_dir($dir)){
|