示例#1
0
 def test_blockchain_info_get_unspents(self):
     client = blockchain_info.BlockchainInfoClient(
         BLOCKCHAIN_API_KEY)
     unspents = blockchain_info.get_unspents(self.address, client)
     self.compare_total_value(unspents)
     self.compare_unspents(unspents)
示例#2
0
 def test_blockchain_info_get_unspents(self):
     client = blockchain_info.BlockchainInfoClient(
         SECRETS['blockchain_api_key'])
     unspents = blockchain_info.get_unspents(self.address, client)
     self.compare_total_value(unspents)
     self.compare_unspents(unspents)
示例#3
0
 def test_blockchain_info_get_unspents(self):
     client = blockchain_info.BlockchainInfoClient(BLOCKCHAIN_API_KEY)
     unspents = blockchain_info.get_unspents(self.address, client)
     self.compare_total_value(unspents)
     self.compare_unspents(unspents)