Commit f1cc960c authored by shajiaiming's avatar shajiaiming

fix

parent 0571ea67
......@@ -79,24 +79,24 @@ class TradeController extends BaseController
public function actionSyncToDb()
{
// $data = [];
// $result = Yii::$app->redis->HGETALL ('trade_hash_memo');
// foreach ($result as $key => $val){
// if (($key + 2) % 2 == 0){
// $data[] = [
// 'hash' => $val,
// 'memo' => $result[$key + 1]
// ];
// }
// }
// foreach ($data as $val){
// if ('0xc080c6a0937f25d1017e5e88bdcff5c3979810c8a6cc1f3a64cf50970da28fc9' == $val['hash']) continue;
// $coin_memo_hash = new CoinHashMemo();
// $coin_memo_hash->hash = $val['hash'];
// $coin_memo_hash->memo = $val['memo'];
// $coin_memo_hash->save();
// }
// exit;
$data = [];
$result = Yii::$app->redis->HGETALL ('trade_hash_memo');
foreach ($result as $key => $val){
if (($key + 2) % 2 == 0){
$data[] = [
'hash' => $val,
'memo' => $result[$key + 1]
];
}
}
foreach ($data as $val){
if ('0xc080c6a0937f25d1017e5e88bdcff5c3979810c8a6cc1f3a64cf50970da28fc9' == $val['hash']) continue;
$coin_memo_hash = new CoinHashMemo();
$coin_memo_hash->hash = $val['hash'];
$coin_memo_hash->memo = $val['memo'];
$coin_memo_hash->save();
}
exit;
}
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