Andreas Schildbach

Results 723 comments of Andreas Schildbach

I'm now in the process of integrating this code into bitcoinj.

The bug is present with 0.1.4 as well. The pom contains this: ``` com.android.support support-v4 19.0.+ compile ``` Version "19.0.+" is not a valid version. Actually I'm surprised Maven Central...

Alternatively: link to more recent version, switching to aar: ``` com.android.support support-v4 22.0.0 aar ```

Ok, I put together a quick proof of concept. The Dockerfile: ``` FROM hayd/alpine-deno:1.9.2 COPY . fork-explorer/ WORKDIR fork-explorer/ EXPOSE 8080 ENTRYPOINT ./build-frontend.sh && ./run-server.sh ``` Copy and edit the...

Ah, the coin base is needed for mining pool detection, right? That would explain the slow sync time.

You can perhaps merge this from http://code.google.com/p/bitcoin-wallet/source/browse/trunk (provided that you accept the GPL license)

You can perhaps merge this from http://code.google.com/p/bitcoin-wallet/source/browse/trunk (provided that you accept the GPL license)

I'm not sure if this is a good idea. Data volumes are typically mounted from outside of the container, so it can't simply be renamed from within.

@Kixunil I don't need the "testnet"/"mainnet" directories in my data volumes. I'm running separated containers and separated volumes for different chains already, so I mounted the specific data directories explicitly.

@Kixunil Thanks for your suggestion. I've just changed my configuration accordingly (still on 0.8.11).