File tree 2 files changed +22
-16
lines changed
2 files changed +22
-16
lines changed Original file line number Diff line number Diff line change @@ -99,15 +99,18 @@ services:
99
99
100
100
proposer :
101
101
image : ghcr.io/eyblockchain/nightfall3-proposer:latest
102
+ # build:
103
+ # dockerfile: proposer.Dockerfile
104
+ # context: ../../
102
105
networks :
103
106
- nightfall_network
104
- volumes :
105
- - type : bind
106
- source : ../../common-files
107
- target : /app/common-files
108
- - type : bind
109
- source : ./proposer/src
110
- target : /app/test/ping-pong/proposer/src
107
+ # volumes:
108
+ # - type: bind
109
+ # source: ../../common-files
110
+ # target: /app/common-files
111
+ # - type: bind
112
+ # source: ./proposer/src
113
+ # target: /app/test/ping-pong/proposer/src
111
114
environment :
112
115
OPTIMIST_HOST : optimist
113
116
OPTIMIST_WS_PORT : 8080
@@ -119,15 +122,18 @@ services:
119
122
120
123
user-local :
121
124
image : ghcr.io/eyblockchain/nightfall3-user-local:latest
125
+ # build:
126
+ # dockerfile: user-local.Dockerfile
127
+ # context: ../../
122
128
networks :
123
129
- nightfall_network
124
- volumes :
125
- - type : bind
126
- source : ../../common-files
127
- target : /app/common-files
128
- - type : bind
129
- source : ./user-local/src
130
- target : /app/test/ping-pong/user-local/src
130
+ # volumes:
131
+ # - type: bind
132
+ # source: ../../common-files
133
+ # target: /app/common-files
134
+ # - type: bind
135
+ # source: ./user-local/src
136
+ # target: /app/test/ping-pong/user-local/src
131
137
environment :
132
138
OPTIMIST_HOST : optimist
133
139
OPTIMIST_WS_PORT : 8080
Original file line number Diff line number Diff line change @@ -27,9 +27,9 @@ async function localTest() {
27
27
userEthereumSigningKey ,
28
28
) ;
29
29
await nf3 . init ( zkpMnemonic ) ;
30
- if ( await nf3 . healthcheck ( 'client' ) ) console . log ( 'Healthcheck passed' ) ;
30
+ if ( await nf3 . healthcheck ( 'client' ) ) logger . info ( 'Healthcheck passed' ) ;
31
31
else throw new Error ( 'Healthcheck failed' ) ;
32
- const ercAddress = await nf3 . getContractAddress ( 'ERCStub ' ) ; // TODO use proper mock contracts
32
+ const ercAddress = await nf3 . getContractAddress ( 'ERC20Mock ' ) ; // TODO use proper mock contracts
33
33
const startBalance = await nf3 . getLayer2Balances ( ) ;
34
34
await nf3 . deposit ( ercAddress , 'ERC20' , 1 , '0x00' ) ;
35
35
await nf3 . deposit ( ercAddress , 'ERC20' , 1 , '0x00' ) ;
You can’t perform that action at this time.
0 commit comments