File tree Expand file tree Collapse file tree 13 files changed +22
-22
lines changed Expand file tree Collapse file tree 13 files changed +22
-22
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ services:
17
17
- ARK_NO_TLS=true
18
18
- ARK_NO_MACAROONS=true
19
19
ports :
20
- - " 6000:6000 "
20
+ - " 7070:7070 "
21
21
volumes :
22
22
- clarkd:/app/data
23
23
- clark:/app/wallet-data
Original file line number Diff line number Diff line change @@ -33,11 +33,11 @@ services:
33
33
- ARK_ROUND_LIFETIME=512
34
34
- ARK_DB_TYPE=sqlite
35
35
- ARK_TX_BUILDER_TYPE=covenant
36
- - ARK_PORT=8080
36
+ - ARK_PORT=6060
37
37
- ARK_NO_TLS=true
38
38
- ARK_NO_MACAROONS=true
39
39
ports :
40
- - " 8080:8080 "
40
+ - " 6060:6060 "
41
41
volumes :
42
42
- arkd:/app/data
43
43
- ark:/app/wallet-data
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ services:
31
31
- ARK_ROUND_INTERVAL=10
32
32
- ARK_NETWORK=liquidtestnet
33
33
ports :
34
- - " 8080:6000 "
34
+ - " 7070:7070 "
35
35
volumes :
36
36
- arkd:/app/data
37
37
- ark:/app/wallet-data
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
)
16
16
17
17
var (
18
- aspUrl = "localhost:8080 "
18
+ aspUrl = "localhost:6060 "
19
19
clientType = arksdk .GrpcClient
20
20
password = "password"
21
21
walletType = arksdk .SingleKeyWallet
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ <h1>Ark SDK WASM Example</h1>
146
146
< h2 > Wallet</ h2 >
147
147
< div >
148
148
< button onclick ="initWallet() "> Init</ button >
149
- < input type ="text " id ="aspUrl " placeholder ="http://localhost:8080 ">
149
+ < input type ="text " id ="aspUrl " placeholder ="http://localhost:6060 ">
150
150
< input type ="password " id ="i_password " placeholder ="password ">
151
151
< input type ="text " id ="prvkey " placeholder ="Optional: privkey (hex) ">
152
152
</ div >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import (
15
15
)
16
16
17
17
var (
18
- aspUrl = "localhost:8080 "
18
+ aspUrl = "localhost:7070 "
19
19
clientType = arksdk .GrpcClient
20
20
password = "password"
21
21
walletType = arksdk .SingleKeyWallet
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ <h1>Ark SDK WASM Example</h1>
146
146
< h2 > Wallet</ h2 >
147
147
< div >
148
148
< button onclick ="initWallet() "> Init</ button >
149
- < input type ="text " id ="aspUrl " placeholder ="http://localhost:8080 ">
149
+ < input type ="text " id ="aspUrl " placeholder ="http://localhost:7070 ">
150
150
< input type ="password " id ="i_password " placeholder ="password ">
151
151
< input type ="text " id ="prvkey " placeholder ="Optional: privkey (hex) ">
152
152
</ div >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ func TestStore(t *testing.T) {
18
18
key , _ := btcec .NewPrivateKey ()
19
19
ctx := context .Background ()
20
20
testStoreData := store.StoreData {
21
- AspUrl : "localhost:8080 " ,
21
+ AspUrl : "localhost:7070 " ,
22
22
AspPubkey : key .PubKey (),
23
23
WalletType : wallet .SingleKeyWallet ,
24
24
ClientType : client .GrpcClient ,
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ func TestWallet(t *testing.T) {
21
21
key , _ := btcec .NewPrivateKey ()
22
22
password := "password"
23
23
testStoreData := store.StoreData {
24
- AspUrl : "localhost:8080 " ,
24
+ AspUrl : "localhost:7070 " ,
25
25
AspPubkey : key .PubKey (),
26
26
WalletType : wallet .SingleKeyWallet ,
27
27
ClientType : client .GrpcClient ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ run: clean
37
37
export ARK_ROUND_INTERVAL=10; \
38
38
export ARK_LOG_LEVEL=5; \
39
39
export ARK_NETWORK=regtest; \
40
- export ARK_PORT=8080 ; \
40
+ export ARK_PORT=7070 ; \
41
41
export ARK_NO_TLS=true; \
42
42
export ARK_NO_MACAROONS=true; \
43
43
export ARK_TX_BUILDER_TYPE=covenantless; \
You can’t perform that action at this time.
0 commit comments