Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
marcello33 committed Nov 8, 2024
1 parent e4de181 commit 20fe1f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
3 changes: 2 additions & 1 deletion src/express/commands/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ async function installCommonPackages(ip) {
await runSshCommand(ip, command, maxRetries)

console.log('📍Installing grpcurl...')
command = 'curl -sSL "https://github.com/fullstorydev/grpcurl/releases/download/v1.8.7/grpcurl_1.8.7_linux_x86_64.tar.gz" | sudo tar -xz -C /usr/local/bin'
command =
'curl -sSL "https://github.com/fullstorydev/grpcurl/releases/download/v1.8.7/grpcurl_1.8.7_linux_x86_64.tar.gz" | sudo tar -xz -C /usr/local/bin'
await runSshCommand(ip, command, maxRetries)
}

Expand Down
5 changes: 1 addition & 4 deletions src/setup/heimdall/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,10 +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 = "true"')
.replace(
/bor_grpc_url[ ]*=[ ]*".*"/gi,
'bor_grpc_url = "localhost:3131"'
Expand Down

0 comments on commit 20fe1f7

Please sign in to comment.