Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 41d9b35

Browse files
committedApr 18, 2022
rename module
1 parent 1955cea commit 41d9b35

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+137
-127
lines changed
 

‎Makefile

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ test-integration: build-with-fast-test
2727
.PHONY: test-integration
2828

2929
test-bitcoin-cln: build-with-fast-test
30-
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_ClnCln_Bitcoin_SwapOut|Test_ClnCln_Bitcoin_SwapIn|Test_ClnLnd_Bitcoin_SwapOut|Test_ClnLnd_Bitcoin_SwapIn)$'' github.com/sputn1ck/peerswap/test
30+
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_ClnCln_Bitcoin_SwapOut|Test_ClnCln_Bitcoin_SwapIn|Test_ClnLnd_Bitcoin_SwapOut|Test_ClnLnd_Bitcoin_SwapIn)$'' github.com/elementsproject/peerswap/test
3131
.PHONY: test-bitcoin-cln
3232

3333
test-bitcoin-lnd: build-with-fast-test
34-
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_LndLnd_Bitcoin_SwapOut|Test_LndLnd_Bitcoin_SwapIn|Test_LndCln_Bitcoin_SwapOut|Test_LndCln_Bitcoin_SwapIn)$'' github.com/sputn1ck/peerswap/test
34+
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_LndLnd_Bitcoin_SwapOut|Test_LndLnd_Bitcoin_SwapIn|Test_LndCln_Bitcoin_SwapOut|Test_LndCln_Bitcoin_SwapIn)$'' github.com/elementsproject/peerswap/test
3535
.PHONY: test-liquid-lnd
3636

3737
test-liquid-cln: build-with-fast-test
38-
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_ClnCln_Liquid_SwapOut|Test_ClnCln_Liquid_SwapIn|Test_ClnLnd_Liquid_SwapOut|Test_ClnLnd_Liquid_SwapIn)$'' github.com/sputn1ck/peerswap/test
38+
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_ClnCln_Liquid_SwapOut|Test_ClnCln_Liquid_SwapIn|Test_ClnLnd_Liquid_SwapOut|Test_ClnLnd_Liquid_SwapIn)$'' github.com/elementsproject/peerswap/test
3939
.PHONY: test-liquid-cln
4040

4141
test-liquid-lnd: build-with-fast-test
42-
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_LndLnd_Liquid_SwapOut|Test_LndLnd_Liquid_SwapIn|Test_LndCln_Liquid_SwapOut|Test_LndCln_Liquid_SwapIn)$'' github.com/sputn1ck/peerswap/test
42+
RUN_INTEGRATION_TESTS=1 PAYMENT_RETRY_TIME=$(PAYMENT_RETRY_TIME) PEERSWAP_TEST_FILTER=$(PEERSWAP_TEST_FILTER) go test -tags dev -tags fast_test -timeout=30m -v -run '^(Test_LndLnd_Liquid_SwapOut|Test_LndLnd_Liquid_SwapIn|Test_LndCln_Liquid_SwapOut|Test_LndCln_Liquid_SwapIn)$'' github.com/elementsproject/peerswap/test
4343
.PHONY: test-liquid-lnd
4444

4545
lnd-release:

‎clightning/clightning.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,20 @@ import (
1313
"sync"
1414
"time"
1515

16-
"github.com/sputn1ck/peerswap/log"
16+
"github.com/elementsproject/peerswap/log"
1717

1818
"github.com/btcsuite/btcd/chaincfg"
19+
"github.com/elementsproject/peerswap/onchain"
1920
"github.com/sputn1ck/glightning/gbitcoin"
20-
"github.com/sputn1ck/peerswap/onchain"
2121

22+
"github.com/elementsproject/peerswap/lightning"
23+
"github.com/elementsproject/peerswap/messages"
24+
"github.com/elementsproject/peerswap/poll"
25+
"github.com/elementsproject/peerswap/swap"
26+
"github.com/elementsproject/peerswap/wallet"
2227
"github.com/sputn1ck/glightning/gelements"
2328
"github.com/sputn1ck/glightning/glightning"
2429
"github.com/sputn1ck/glightning/jrpc2"
25-
"github.com/sputn1ck/peerswap/lightning"
26-
"github.com/sputn1ck/peerswap/messages"
27-
"github.com/sputn1ck/peerswap/poll"
28-
"github.com/sputn1ck/peerswap/swap"
29-
"github.com/sputn1ck/peerswap/wallet"
3030
)
3131

3232
var methods = []peerswaprpcMethod{

0 commit comments

Comments
 (0)
Please sign in to comment.