Skip to content

Commit

Permalink
update missed enclave flag usage
Browse files Browse the repository at this point in the history
  • Loading branch information
BedrockSquirrel committed Mar 27, 2024
1 parent ce6b156 commit 98c46e3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion go/node/docker_node.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func (d *DockerNode) startHost() error {
cmd := []string{
"/home/obscuro/go-obscuro/go/host/main/main",
"-l1WSURL", d.cfg.l1WSURL,
"-enclaveRPCAddress", fmt.Sprintf("%s:%d", d.cfg.nodeName+"-enclave", d.cfg.enclaveWSPort),
"-enclaveRPCAddresses", fmt.Sprintf("%s:%d", d.cfg.nodeName+"-enclave", d.cfg.enclaveWSPort),
"-managementContractAddress", d.cfg.managementContractAddr,
"-messageBusContractAddress", d.cfg.messageBusContractAddress,
"-l1Start", d.cfg.l1Start,
Expand Down
2 changes: 1 addition & 1 deletion testnet/docker-compose.debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
"/home/obscuro/go-obscuro/go/host/main/main",
"--l1NodeHost=$L1HOST",
"--l1NodePort=$L1PORT",
"--enclaveRPCAddress=enclave:11000",
"--enclaveRPCAddresses=enclave:11000",
"--managementContractAddress=$MGMTCONTRACTADDR",
"--messageBusContractAddress=$MSGBUSCONTRACTADDR",
"--privateKey=$PKSTRING",
Expand Down
2 changes: 1 addition & 1 deletion testnet/docker-compose.non-sgx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
"/home/obscuro/go-obscuro/go/host/main/main",
"--l1NodeHost=$L1HOST",
"--l1NodePort=$L1PORT",
"--enclaveRPCAddress=enclave:11000",
"--enclaveRPCAddresses=enclave:11000",
"--managementContractAddress=$MGMTCONTRACTADDR",
"--privateKey=$PKSTRING",
"--clientRPCHost=0.0.0.0",
Expand Down
2 changes: 1 addition & 1 deletion testnet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
"/home/obscuro/go-obscuro/go/host/main/main",
"--l1NodeHost=$L1HOST",
"--l1NodePort=$L1PORT",
"--enclaveRPCAddress=enclave:11000",
"--enclaveRPCAddresses=enclave:11000",
"--managementContractAddress=$MGMTCONTRACTADDR",
"--privateKey=$PKSTRING",
"--clientRPCHost=0.0.0.0",
Expand Down

0 comments on commit 98c46e3

Please sign in to comment.