소스 검색

add reverse:for v2.1.0 更新

tags/v2.1.1
huangjiajun 2 년 전
부모
커밋
751b1b6942
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -0
      db/db_user_virtual_amount.go
  2. +3
    -3
      svc/svc_block_star_chain_settlement.go

+ 1
- 0
db/db_user_virtual_amount.go 파일 보기

@@ -90,6 +90,7 @@ func GetUserVirtualWalletWithSession(session *xorm.Session, uid, coinId int) (*m
if err != nil || one == 0 {
return nil, err
}
return &UserVirtualWallet, nil
}
return nil, errors.New("获取用户虚拟币钱包失败")
}


+ 3
- 3
svc/svc_block_star_chain_settlement.go 파일 보기

@@ -17,9 +17,9 @@ func GetUserCoinAmount(session *xorm.Session, masterId string, coinId, uid int)
if err != nil {
if err.Error() == "redigo: nil returned" {
userVirtualAmount, err := db.GetUserVirtualWalletWithSession(session, uid, coinId)
if err != nil {
return amount, err
}
//if err != nil {
// return amount, err
//}
if userVirtualAmount == nil {
amount = "0"
} else {


불러오는 중...
취소
저장