It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
#############################################################################
@catchErrsForJSON
def jsonrpc_getreceivedbyaddress(self, address, minconf=0):
"""
DESCRIPTION:
Get the number of coins received by a Base58 address associated with
the currently loaded wallet.
PARAMETERS:
address - The Base58 address associated with the current wallet.
minconf - (Default=0) The minimum number of confirmations required for a
TX to be included in the final balance.
RETURN:
The balance received from the incoming address (BTC).
"""
if CLI_OPTIONS.offline:
raise ValueError('Cannot get received amount when offline')
# Only gets correct amount for addresses in the wallet, otherwise 0
addr160 = addrStr_to_hash160(address, False)[1]
# Iterate through the address in our wallet. Include coins only if values
# are positive and the number of confirmations is high enough.
txs = self.curWlt.getAddrTxLedger(addr160)
balance = 0
for curTX in txs:
nconf = (TheBDM.getTopBlockHeader().getBlockHeight() - \
curTX.getBlockNum()) + 1
if (nconf >= minconf) and (curTX.getValue() > 0):
balance += curTX.getValue()
return AmountToJSON(balance)
def jsonrpc_getreceivedbyaddress(self, address):
"""
DESCRIPTION:
Get the number of coins received by a Base58 address associated with
the currently loaded wallet.
PARAMETERS:
address - The Base58 address associated with the current wallet.
RETURN:
The balance received from the incoming address (BTC).
"""
if CLI_OPTIONS.offline:
raise ValueError('Cannot get received amount when offline')
# Only gets correct amount for addresses in the wallet, otherwise 0
addr160 = addrStr_to_hash160(address, False)[1]
txs = self.curWlt.getAddrTxLedger(addr160)
balance = sum([x.getValue() for x in txs if x.getValue() > 0])
return AmountToJSON(balance)
root@cloud-server-07:/BitcoinArmory# python armoryd.py
Traceback (most recent call last):
File "armoryd.py", line 55, in
from txjsonrpc.auth import wrapResource
ImportError: No module named txjsonrpc.auth
root@cloud-server-07:/BitcoinArmory# python armoryd.py
Traceback (most recent call last):
File "armoryd.py", line 55, in
from txjsonrpc.auth import wrapResource
ImportError: No module named txjsonrpc.auth
root@cloud-server-07:/BitcoinArmory# python armoryd.py
Traceback (most recent call last):
File "armoryd.py", line 55, in
from txjsonrpc.auth import wrapResource
ImportError: No module named txjsonrpc.auth