示例#1
0
文件: market.py 项目: Ermans/steampy
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(
         self.steam_session.steam_guard['identity_secret'],
         self.steam_session.steam_guard['steamid'], self.steam_session)
     try:
         return con_executor.confirm_sell_listing(asset_id)
     except Exception as e:
         raise SteamServerError("[CONFIRM_SELL_LISTING_ERROR]") from e
示例#2
0
文件: market.py 项目: sollybr/steampy
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(
         self._steam_guard['identity_secret'], self._steam_guard['steamid'],
         self._session)
     return con_executor.confirm_sell_listing(asset_id)
示例#3
0
 def _confirm_sell_listing(self, asset_id: str) -> dict:
     con_executor = ConfirmationExecutor(self._identity_secret,
                                         self.steam_id, self._session)
     return con_executor.confirm_sell_listing(asset_id)