Commit b96d7cec authored by wulixian's avatar wulixian

Merge branch 'dev' into 'test'

修正转赠 See merge request !12
parents 7b9822e5 5b720e37
......@@ -272,7 +272,7 @@ public class UserAssetTransferConsumer {
}
UserAssetRecord userAssetRecord = new UserAssetRecord();
userAssetRecord.init(user.getUid(), record.getCoin(), 21, reNumber, stauts,
userRecive.getAddress(), hash, "转赠方扣除用户资产");
userRecive.getAddress(), hash, record.getRemark());
userAssetRecordMapper.insert(userAssetRecord);
/**
......@@ -280,7 +280,7 @@ public class UserAssetTransferConsumer {
*/
UserAssetRecord userReAssetRecord = new UserAssetRecord();
userReAssetRecord.init(userRecive.getUid(), record.getCoin(), 20, reNumber, stauts,
user.getAddress(), hash, "接收方增加用户资产");
user.getAddress(), hash, record.getRemark());
userAssetRecordMapper.insert(userReAssetRecord);
}
......
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