* @return true, if too many accounts have been created recently
* @throws SQLException in case of an database error
* @throws IOException in case of an input/output error
*/
public boolean isAccountCreationLimitReached(String address) throws SQLException, IOException {
DBTransaction transaction = TransactionPool.get().beginWork();
try {
boolean res = isAccountCreationLimitReached(transaction, address);
return res;
} finally {
TransactionPool.get().commit(transaction);