Skip to content

Commit

Permalink
Add vscode launch.json
Browse files Browse the repository at this point in the history
  • Loading branch information
BHare1985 committed Aug 1, 2024
1 parent 910d698 commit e4d910c
Showing 1 changed file with 42 additions and 1 deletion.
43 changes: 42 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,46 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": []
"configurations": [
{
"name": "Launch Blockchain Node (MI, 0, 0)",
"type": "go",
"request": "launch",
"mode": "auto",
"dlvFlags": [
"--check-go-version=false"
],
"program": "${workspaceFolder}/blockchainnode/blockchainnode.go",
"args": [
"-mode",
"MI",
"-sc",
"0",
"-port",
"0"
],
"buildFlags": "",
"env": {},
},
{
"name": "Launch Blockchain Simulation (MT, 127.0.0.1, )",
"type": "go",
"request": "launch",
"mode": "auto",
"dlvFlags": [
"--check-go-version=false"
],
"program": "${workspaceFolder}/blockchainsim/blockchainsim.go",
"args": [
"-mode",
"MI",
"-ip",
"127.0.0.1",
"-iface",
"",
],
"buildFlags": "",
"env": {},
}
],
}

0 comments on commit e4d910c

Please sign in to comment.