src/main/java/com/xcong/excoin/modules/coin/controller/Trc20Controller.java | ●●●●● patch | view | raw | blame | history |
src/main/java/com/xcong/excoin/modules/coin/controller/Trc20Controller.java
@@ -97,7 +97,7 @@ return Result.fail("状态错误"); } String sign = SecureUtil.md5(trcWithdrawDto.getMemberId() + trcWithdrawDto.getOrderNo() + trcWithdrawDto.getStatus() + trcWithdrawDto.getSymbol()); String sign = SecureUtil.md5(trcWithdrawDto.getMemberId() + trcWithdrawDto.getOrderNo() + trcWithdrawDto.getStatus() + trcWithdrawDto.getSymbol() + TRC20ApiUtils.SIGN_STR); if (!sign.equals(trcWithdrawDto.getKey())) { return Result.fail("参数错误"); }