wallet/wallet.c: bind_null if (chan->remote_shutdown_scriptpubkey)

This commit is contained in:
Jan Sarenik 2018-06-15 12:49:00 +02:00 committed by Rusty Russell
parent 2090ddd1fa
commit 580b8ba8a9

View file

@ -911,6 +911,8 @@ void wallet_channel_save(struct wallet *w, struct channel *chan)
sqlite3_bind_blob(stmt, 16, chan->remote_shutdown_scriptpubkey, sqlite3_bind_blob(stmt, 16, chan->remote_shutdown_scriptpubkey,
tal_len(chan->remote_shutdown_scriptpubkey), tal_len(chan->remote_shutdown_scriptpubkey),
SQLITE_TRANSIENT); SQLITE_TRANSIENT);
else
sqlite3_bind_null(stmt, 16);
sqlite3_bind_int64(stmt, 17, chan->final_key_idx); sqlite3_bind_int64(stmt, 17, chan->final_key_idx);
sqlite3_bind_int64(stmt, 18, chan->our_config.id); sqlite3_bind_int64(stmt, 18, chan->our_config.id);