From fd3a47d83dc6373275f8f6431b67b569f08e1428 Mon Sep 17 00:00:00 2001
From: Helius <wangdoubleone@gmail.com>
Date: Fri, 05 Jun 2020 11:26:48 +0800
Subject: [PATCH] finish contract order history list interface

---
 src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
index 9a79ace..842de88 100644
--- a/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
+++ b/src/main/java/com/xcong/excoin/common/system/service/impl/CommonServiceImpl.java
@@ -26,6 +26,7 @@
     @Override
     public boolean verifyCode(String account, String code) {
         String cacheCode = redisUtils.getString(AppContants.VERIFY_CODE_PREFIX + account);
+        log.info("---->{}", cacheCode);
         if (StrUtil.isBlank(cacheCode)) {
             return false;
         }

--
Gitblit v1.9.1