-
IntroductionI tried to use this nice toolset but failed within my ubuntu focal due to coreutils 8.30 (basenc available >=8.31). So i tried a docker image but test failed (some dependencies etc.) What I diddocker run -it --rm ubuntu:rolling ## at time of writing (11/2021) 21.10 (impish)
apt install openssl coreutils git dc xxd python vim #(<-- python is needed ?!!, vim for debugging :D)
git clone https://github.com/grondilu/bitcoin-bash-tools.git
cd bitcoin-bash-tools
prove t/*.t.sh What I got
I was about to generate bip84 coldwallet but Failed 13/13 subtests sounds not good. Maybe someone can help me to find the bugs?
Thanks for your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The file secp256k1.dc is not supposed to be required anymore as I merged everything in a single file recently. Apparently it was still referenced in t/basics.t.sh, I hadn't pushed the fix yet. My bad. Should be fixed with commit b1aa1f8 As for the AttributeError, it seems to be python-related, and I can't reproduce it. Not sure why I defined python as the default for this test. I'll change that. |
Beta Was this translation helpful? Give feedback.
The file secp256k1.dc is not supposed to be required anymore as I merged everything in a single file recently.
Apparently it was still referenced in t/basics.t.sh, I hadn't pushed the fix yet. My bad.
Should be fixed with commit b1aa1f8
As for the AttributeError, it seems to be python-related, and I can't reproduce it. Not sure why I defined python as the default for this test. I'll change that.