go-ethereum/.vscode/launch.json
manicprogrammer ba880a7c04 eth: fixed formatting
applied gofmt -s
2017-11-30 12:43:53 -05:00

22 lines
No EOL
798 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "go",
"request": "launch",
"mode": "debug",
"remotePath": "",
"port": 2345,
"host": "127.0.0.1",
"program": "${fileDirname}",
"env": {},
"args": ["attach","--exec=debug.traceTransaction('0xb44ab4e708611c6cd2125bdedc013e922e876a6e1d45750541f258b14ae57c48')"],
//"args": ["--rinkeby","--datadir=j:\\rinkeby","--verbosity=0","console"],
"showLog": true
}
]
}