libplugin: add required import

libplugin seems to need the time include, so move it up from pay.
This commit is contained in:
lisa neigut 2019-08-27 22:36:50 -05:00 committed by Rusty Russell
parent 5c70890efa
commit f784863603
2 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#define LIGHTNING_PLUGINS_LIBPLUGIN_H
#include "config.h"
#include <ccan/time/time.h>
#include <common/json.h>
#include <common/json_command.h>
#include <common/json_helpers.h>

View File

@ -3,7 +3,6 @@
#include <ccan/intmap/intmap.h>
#include <ccan/json_out/json_out.h>
#include <ccan/tal/str/str.h>
#include <ccan/time/time.h>
#include <common/amount.h>
#include <common/bolt11.h>
#include <common/pseudorand.h>