Commit e629295df4f08cb0061a9d5142a0f2e7068d2047
1 parent
8ae04b5a
协议
Showing
2 changed files
with
2 additions
and
1 deletions
Show diff stats
src/ProtocolCode.lua
| @@ -177,6 +177,7 @@ actionCodes = { | @@ -177,6 +177,7 @@ actionCodes = { | ||
| 177 | Store_googleRechargeRpc = 553, | 177 | Store_googleRechargeRpc = 553, |
| 178 | Store_purchaseOrderResult = 554, | 178 | Store_purchaseOrderResult = 554, |
| 179 | Store_ayncPurchaseRpc = 555, | 179 | Store_ayncPurchaseRpc = 555, |
| 180 | + Store_myCardRechargeRpc = 556, | ||
| 180 | 181 | ||
| 181 | 182 | ||
| 182 | Email_listRpc = 600, | 183 | Email_listRpc = 600, |
src/actions/StoreAction.lua
| @@ -112,7 +112,7 @@ function _M.myCardRechargeRpc(agent, data) | @@ -112,7 +112,7 @@ function _M.myCardRechargeRpc(agent, data) | ||
| 112 | } | 112 | } |
| 113 | local sign = signPms(need, secret_key) | 113 | local sign = signPms(need, secret_key) |
| 114 | 114 | ||
| 115 | - SendPacket(actionCodes.Store_googleRechargeRpc, MsgPack.pack({ order = partnerOrderId, sign = sign})) | 115 | + SendPacket(actionCodes.Store_myCardRechargeRpc, MsgPack.pack({ order = partnerOrderId, sign = sign})) |
| 116 | return true | 116 | return true |
| 117 | end | 117 | end |
| 118 | 118 |