Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions public/electron.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,8 +195,8 @@ app.on('activate', () => {
});

app.on('quit', () => {
lndProcess && lndProcess.kill();
btcdProcess && btcdProcess.kill();
lndProcess && lndProcess.kill('SIGINT');
btcdProcess && btcdProcess.kill('SIGINT');
});

app.setAsDefaultProtocolClient(PREFIX_NAME);
Expand Down
8 changes: 4 additions & 4 deletions test/integration/action/action-integration.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ describe('Action Integration Tests', function() {

after(async () => {
await Promise.all([grpc1.closeLnd(), grpc2.closeLnd()]);
lndProcess1.kill();
lndProcess2.kill();
btcdProcess.kill();
lndProcess1.kill('SIGINT');
lndProcess2.kill('SIGINT');
btcdProcess.kill('SIGINT');
});

describe('Generate seed and unlock wallet', () => {
Expand Down Expand Up @@ -223,7 +223,7 @@ describe('Action Integration Tests', function() {
});

it('should fund wallet for node1', async () => {
btcdProcess.kill();
btcdProcess.kill('SIGINT');
btcdArgs.miningAddress = store1.walletAddress;
btcdProcess = await startBtcdProcess(btcdArgs);
await nap(NAP_TIME);
Expand Down