Bilthon
Bilthon
same problem here
Bear in mind that you should also remove bitcoin core from the config file, as `_getChainTransactions ` is only called if there's no `bitcoind` field in config.
What's up with this test PR? I moved all of the code to the `block-tests.js` and applied the modifications as requested. Is there anything else you think should be done?
Regarding encryption, I guess that we could do it, but then would lose the indexing capabilities (at least if everything is encrypted). Do you think encryption would really be required...
@vesparny and did you make use of the IndexedDB ?
Interesting @vesparny , I suppose `cachedAddresses` in there is the object you store in the AsyncStorage, right? This will work, however I would find it preferable to make use of...
Sorry I took that long to answer. But yes you guys can use it as much as you like. Any improvement is also welcome. I'll take some time to include...
It's been a while since I've touched that code, but did you check that the `chooseDimension()` method calls the `getPreferredSize()` here at line [153](https://github.com/bilthon/Android-Speedometer/blob/master/app/src/main/java/com/luminiasoft/labs/views/Speedometer.java#L153)? this is returning a hard-coded value...
Thanks @aristide!! and yes, you're more than welcome to place a pull request with your changes.
This is what I do: ```java mSearchView.setOnQueryChangeListener(new FloatingSearchView.OnQueryChangeListener() { @Override public void onSearchTextChanged(String oldQuery, String newQuery) { if(newQuery.length() >= MIN_QUERY_LENGTH){ query = newQuery; mHandler.removeCallbacksAndMessages(null); mHandler.postDelayed(mSendQuery, QUERY_DELAY); } } }); ```...