コード例 #1
0
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(
         trade_offer_id, self.mafile['identity_secret'],
         str(self.mafile['Session']['SteamID']), self._session)
     return confirmation_executor.send_trade_allow_request()
コード例 #2
0
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(
         self.steam_guard['identity_secret'], self.steam_guard['steamid'],
         self._session)
     return confirmation_executor.send_trade_allow_request(trade_offer_id)
コード例 #3
0
ファイル: client.py プロジェクト: bukson/steampy
 def _confirm_transaction(self, trade_offer_id: str) -> dict:
     confirmation_executor = ConfirmationExecutor(self.steam_guard['identity_secret'], self.steam_guard['steamid'],
                                                  self._session)
     return confirmation_executor.send_trade_allow_request(trade_offer_id)