mirror of
https://github.com/aljazceru/ark.git
synced 2026-01-31 17:14:46 +01:00
* fix and test cheating scenario (malicious double spend) * test and fix async vtxo cheating cases * add replace statement in go.mod * Update server/internal/core/application/covenantless.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/internal/infrastructure/wallet/btc-embedded/psbt.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenant/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenantless/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * Update server/test/e2e/covenantless/e2e_test.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * remove unused * [btc-embedded] fix GetNotificationChannel * [tx-builder] fix redeem transaction fee estimator * close grpc client in tests * [application] rework listentoscannerNotification * [application][covenant] fix getConnectorAmount * [tx-builder][covenant] get connector amount from wallet * e2e test sleep time * [liquid-standalone] ListConnectorUtxos: filter by script client side * fix Makefile integrationtest * do not use cache in integration tests * use VtxoKey as argument of findForfeitTxBitcoin * wrap adversarial test in t.Run * increaste test timeout * CI: setup go 1.23.1 * CI: revert go version * add replace in server/go.mod * Update server/internal/core/application/covenant.go Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com> Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> * remove replace * readd replace statement * fixes * go work sync * fix CI --------- Signed-off-by: Louis Singer <41042567+louisinger@users.noreply.github.com> Co-authored-by: Pietralberto Mazza <18440657+altafan@users.noreply.github.com>
31 lines
699 B
YAML
31 lines
699 B
YAML
services:
|
|
clarkd:
|
|
container_name: clarkd
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
restart: unless-stopped
|
|
environment:
|
|
- ARK_ROUND_INTERVAL=10
|
|
- ARK_NETWORK=regtest
|
|
- ARK_LOG_LEVEL=5
|
|
- ARK_ROUND_LIFETIME=512
|
|
- ARK_TX_BUILDER_TYPE=covenantless
|
|
- ARK_ESPLORA_URL=http://chopsticks:3000
|
|
- ARK_BITCOIND_RPC_USER=admin1
|
|
- ARK_BITCOIND_RPC_PASS=123
|
|
- ARK_BITCOIND_RPC_HOST=bitcoin:18443
|
|
- ARK_NO_TLS=true
|
|
- ARK_NO_MACAROONS=true
|
|
- ARK_DATADIR=/app/data
|
|
ports:
|
|
- "7070:7070"
|
|
volumes:
|
|
- type: tmpfs
|
|
target: /app/data
|
|
|
|
networks:
|
|
default:
|
|
name: nigiri
|
|
external: true
|