dual-fund: call daemon_shutdown only

daemon_shutdown calls common_shutdown internally; calling both frees the
same context twice
This commit is contained in:
niftynei 2020-09-15 20:29:03 -05:00 committed by Rusty Russell
parent 56b3711bbc
commit db2b013990
1 changed files with 0 additions and 1 deletions

View File

@ -1516,7 +1516,6 @@ int main(int argc, char *argv[])
/* This frees the entire tal tree. */
tal_free(state);
common_shutdown();
daemon_shutdown();
return 0;
}