Commit e629295df4f08cb0061a9d5142a0f2e7068d2047

Authored by zhouhaihai
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 177 Store_googleRechargeRpc = 553,
178 178 Store_purchaseOrderResult = 554,
179 179 Store_ayncPurchaseRpc = 555,
  180 + Store_myCardRechargeRpc = 556,
180 181  
181 182  
182 183 Email_listRpc = 600,
... ...
src/actions/StoreAction.lua
... ... @@ -112,7 +112,7 @@ function _M.myCardRechargeRpc(agent, data)
112 112 }
113 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 116 return true
117 117 end
118 118  
... ...