diff --git a/.gitignore b/.gitignore index db90f0d053..2944d0cc8e 100755 --- a/.gitignore +++ b/.gitignore @@ -49,6 +49,7 @@ scripts/mm2/seed/unparsed.txt /.vscode/settings.json /.vscode/tasks.json /.vscode/c_cpp_properties.json +/.vscode/launch.json # IDE artefacts /.vscode/ipch diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 42724876e3..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "mm2", - "type": "cppvsdbg", - "request": "launch", - "program": "${workspaceRoot}/target/debug/mm2.exe", - "args": ["{\"gui\":\"nogui\",\"client\":1, \"passphrase\":\"123\", \"coins\":\"BTC,KMD\"}"], - "stopAtEntry": false, - "cwd": "${workspaceRoot}", - "environment": [], - "externalConsole": false - }, - { - "name": "test", - "type": "cppvsdbg", - "request": "launch", - "program": "${workspaceRoot}/target/debug/mm2-62664bdf1981f49d.exe", - "args": ["peers_dht"], - "stopAtEntry": false, - "cwd": "${workspaceRoot}", - "environment": [ - {"name": "LOCAL_THREAD_MM", "value": "1"} - ], - "externalConsole": false - }, - { - "name": "test-trade", - "type": "cppvsdbg", - "request": "launch", - // Waiting for https://github.com/rust-lang/cargo/issues/1924. - "program": "${workspaceRoot}/target/debug/mm2-e4371a8467308969.exe", - "args": ["trade_beer_pizza", "--nocapture", "--ignored"], - "stopAtEntry": false, - "cwd": "${workspaceRoot}", - // Use ".env.client" to set PASSPHRASE and USERPASS for Alice, - // ".env.seed" to set PASSPHRASE and USERPASS for Bob. - "environment": [ - {"name": "LOCAL_THREAD_MM", "value": "alice"}, - ], - "externalConsole": false - } - ] -} \ No newline at end of file