PedroD
PedroD
``` version: "3.3" services: bitcoind: image: lncm/bitcoind:v25.0 container_name: bitcoind user: 1000:1000 volumes: - ${MOUNT__BTC_DATA}:/data/.bitcoin environment: - BTC__RPC_USER=${BTC__RPC_USER} - BTC__RPC_PASS=${BTC__RPC_PASS} - BTC__RPC_PORT=${BTC__RPC_PORT} command: [ "--server=1", "--rpcuser=${BTC__RPC_USER}", "--rpcpassword=${BTC__RPC_PASS}", "--rpcbind=0.0.0.0", "--rpcallowip=0.0.0.0/0", "--rpcport=${BTC__RPC_PORT}", "--txindex=1",...
I am still stuck with this. JM doesn't log anywhere the cause of this failure. :(
@AdamISZ I found the reason, JM logs it in the web-ui only (but doesn't store those logs on disk -- at least I couldn't find them). Would it be too...
> See https://joinmarket-org.github.io/joinmarket-clientserver/api/#operation/freeze for the freeze operation I described above. > > So, perhaps it isn't the most convenient, but this persists to the actual wallet file that a particular...
@AdamISZ your approach has one **BIG** issue: If in the time between freezing the UTXOs and using the unfrozen ones, I receive new UTXOs, those will get used as well....
Alternatively, if it is easier to deploy, JM could just have an option (possible to change via the API) that allows freezing all new UTXOs. So this way I can...
> > So this way I can freeze all the UTXOs I want, and if any new UTXOs shows up, it will be frozen by default, thus not a problem....
@AdamISZ thank you for considering this! :)
I have the same issue with their example: https://github.com/ageitgey/face_recognition/blob/master/examples/facerec_from_webcam.py ``` $ python facerec_from_webcam_faster.py Traceback (most recent call last): File "/home/milhas/projectos/airport/face_recognition/examples/facerec_from_webcam_faster.py", line 55, in face_encodings = face_recognition.face_encodings(rgb_small_frame, face_locations) File "/home/milhas/.local/lib/python3.10/site-packages/face_recognition/api.py", line...
Another instance of a broken demo here: https://github.com/open-mmlab/mmaction2/blob/main/demo/README.md#spatiotemporal-action-detection-webcam-demo By following the example command: ``` $ python demo/webcam_demo_spatiotemporal_det.py \ --input-video 0 \ --config configs/detection/slowonly/slowonly_kinetics400-pretrained-r101_8xb16-8x8x1-20e_ava21-rgb.py \ --checkpoint https://download.openmmlab.com/mmaction/detection/ava/slowonly_omnisource_pretrained_r101_8x8x1_20e_ava_rgb/slowonly_omnisource_pretrained_r101_8x8x1_20e_ava_rgb_20201217-16378594.pth \ --det-config demo/demo_configs/faster-rcnn_r50_fpn_2x_coco_infer.py \...