Пример #1
0
 def test_cancel_order(self):
     upbit = Upbitpy(self.KEY, self.SECRET)
     uuid = self.__do_temp_order(upbit)
     self.assertIsNotNone(uuid)
     ret = upbit.cancel_order(uuid)
     self.assertIsNotNone(ret)
     self.assertNotEqual(len(ret), 0)
     logging.info(ret)
Пример #2
0
 def test_cancel_order(self):
     upbit = Upbitpy(self.KEY, self.SECRET)
     uuid = self.__do_temp_order(upbit)
     ret = upbit.cancel_order(uuid)
     logging.info(ret)