Skip to content

Commit

Permalink
fix rpc url
Browse files Browse the repository at this point in the history
  • Loading branch information
zkokelj committed Jan 4, 2024
1 parent 027274e commit 6adc465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/tasks/ten-gateway.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import http from 'http';

task("ten:gateway:start:local")
.addFlag('withStdOut')
.addParam('rpcUrl', "Node rpc endpoint where the Ten gateway should connect to.")
.addParam('rpcurl', "Node rpc endpoint where the Ten gateway should connect to.")
.addOptionalParam('port', "Port that the Ten gateway will open for incoming requests.", "3001")
.setAction(async function(args, hre) {
const nodeUrl = url.parse(args.rpcUrl);
const nodeUrl = url.parse(args.rpcurl);
const tenGatewayPath = path.resolve(hre.config.paths.root, "../tools/walletextension/bin/wallet_extension_linux");
const weProcess = spawn(tenGatewayPath, [
`-portWS`, `${args.port}`,
Expand Down

0 comments on commit 6adc465

Please sign in to comment.