Commit f1cc960c authored by shajiaiming's avatar shajiaiming

fix

parent 0571ea67
...@@ -79,24 +79,24 @@ class TradeController extends BaseController ...@@ -79,24 +79,24 @@ class TradeController extends BaseController
public function actionSyncToDb() public function actionSyncToDb()
{ {
// $data = []; $data = [];
// $result = Yii::$app->redis->HGETALL ('trade_hash_memo'); $result = Yii::$app->redis->HGETALL ('trade_hash_memo');
// foreach ($result as $key => $val){ foreach ($result as $key => $val){
// if (($key + 2) % 2 == 0){ if (($key + 2) % 2 == 0){
// $data[] = [ $data[] = [
// 'hash' => $val, 'hash' => $val,
// 'memo' => $result[$key + 1] 'memo' => $result[$key + 1]
// ]; ];
// } }
// } }
// foreach ($data as $val){ foreach ($data as $val){
// if ('0xc080c6a0937f25d1017e5e88bdcff5c3979810c8a6cc1f3a64cf50970da28fc9' == $val['hash']) continue; if ('0xc080c6a0937f25d1017e5e88bdcff5c3979810c8a6cc1f3a64cf50970da28fc9' == $val['hash']) continue;
// $coin_memo_hash = new CoinHashMemo(); $coin_memo_hash = new CoinHashMemo();
// $coin_memo_hash->hash = $val['hash']; $coin_memo_hash->hash = $val['hash'];
// $coin_memo_hash->memo = $val['memo']; $coin_memo_hash->memo = $val['memo'];
// $coin_memo_hash->save(); $coin_memo_hash->save();
// } }
// exit; exit;
} }
public function actionAddressIsExist() public function actionAddressIsExist()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment