Skip to content

Commit

Permalink
cgh: bor_grpc_flag disabled by default
Browse files Browse the repository at this point in the history
  • Loading branch information
marcello33 committed Nov 13, 2024
1 parent f9bedde commit 5f4bca9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/setup/devnet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ export class Devnet {
)
.replace(
/bor_grpc_flag[ ]*=[ ]*".*"/gi,
'bor_grpc_flag = "true"'
'bor_grpc_flag = "false"'
)
.replace(
/bor_grpc_url[ ]*=[ ]*".*"/gi,
Expand Down Expand Up @@ -382,7 +382,7 @@ export class Devnet {
)
.replace(
/bor_grpc_flag[ ]*=[ ]*".*"/gi,
'bor_grpc_flag = "true"'
'bor_grpc_flag = "false"'
)
.replace(
/bor_grpc_url[ ]*=[ ]*".*"/gi,
Expand Down
2 changes: 1 addition & 1 deletion src/setup/heimdall/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ export class Heimdall {
/bor_rpc_url[ ]*=[ ]*".*"/gi,
'bor_rpc_url = "http://localhost:8545"'
)
.replace(/bor_grpc_flag[ ]*=[ ]*".*"/gi, 'bor_grpc_flag = "true"')
.replace(/bor_grpc_flag[ ]*=[ ]*".*"/gi, 'bor_grpc_flag = "false"')
.replace(
/bor_grpc_url[ ]*=[ ]*".*"/gi,
'bor_grpc_url = "localhost:3131"'
Expand Down

0 comments on commit 5f4bca9

Please sign in to comment.