@ -314,7 +314,7 @@ static bool test_channel_crud(const tal_t *ctx)
CHECK ( ! wallet_err ) ;
/* Variant 1: insert with null for scid, funding_tx_id, channel_info, last_tx */
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 1 ) ;
CHECK_MSG ( ! wallet_err ,
tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
@ -329,7 +329,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 2: update with scid set */
c1 . peer - > scid = talz ( w , struct short_channel_id ) ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err ,
tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
@ -345,7 +345,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 3: update with our_satoshi set */
c1 . peer - > our_msatoshi = & msat ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,
@ -354,7 +354,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 4: update with funding_tx_id */
c1 . peer - > funding_txid = hash ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,
@ -363,7 +363,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 5: update with channel_info */
p . channel_info = & ci ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,
@ -372,7 +372,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 6: update with last_commit_sent */
p . last_sent_commit = & last_commit ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,
@ -382,7 +382,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 7: update with last_tx (taken from BOLT #3) */
p . last_tx = bitcoin_tx_from_hex ( w , " 02000000000101bef67e4e2fb9ddeeb3461973cd4c62abb35050b1add772995b820b584a488489000000000038b02b8003a00f0000000000002200208c48d15160397c9731df9bc3b236656efb6665fbfe92b4a6878e88a499f741c4c0c62d0000000000160014ccf1af2f2aabee14bb40fa3851ab2301de843110ae8f6a00000000002200204adb4e2f00643db396dd120d4e7dc17625f5f2c11a40d857accc862d6b7dd80e040047304402206a2679efa3c7aaffd2a447fd0df7aba8792858b589750f6a1203f9259173198a022008d52a0e77a99ab533c36206cb15ad7aeb2aa72b93d4b571e728cb5ec2f6fe260147304402206d6cb93969d39177a09d5d45b583f34966195b77c7e585cf47ac5cce0c90cefb022031d71ae4e33a4e80df7f981d696fbdee517337806a3c7138b7491e2cbb077a0e01475221023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb21030e9f7b623d2ccc7c9bd44d66d5ce21ce504c0acf6385a132cec6d3c39fa711c152ae3e195220 " , strlen ( " 02000000000101bef67e4e2fb9ddeeb3461973cd4c62abb35050b1add772995b820b584a488489000000000038b02b8003a00f0000000000002200208c48d15160397c9731df9bc3b236656efb6665fbfe92b4a6878e88a499f741c4c0c62d0000000000160014ccf1af2f2aabee14bb40fa3851ab2301de843110ae8f6a00000000002200204adb4e2f00643db396dd120d4e7dc17625f5f2c11a40d857accc862d6b7dd80e040047304402206a2679efa3c7aaffd2a447fd0df7aba8792858b589750f6a1203f9259173198a022008d52a0e77a99ab533c36206cb15ad7aeb2aa72b93d4b571e728cb5ec2f6fe260147304402206d6cb93969d39177a09d5d45b583f34966195b77c7e585cf47ac5cce0c90cefb022031d71ae4e33a4e80df7f981d696fbdee517337806a3c7138b7491e2cbb077a0e01475221023da092f6980e58d2c037173180e9a465476026ee50f96695963e8efe436f54eb21030e9f7b623d2ccc7c9bd44d66d5ce21ce504c0acf6385a132cec6d3c39fa711c152ae3e195220 " ) ) ;
p . last_sig = sig ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,
@ -392,7 +392,7 @@ static bool test_channel_crud(const tal_t *ctx)
/* Variant 8: update and add remote_shutdown_scriptpubkey */
p . remote_shutdown_scriptpubkey = scriptpubkey ;
p . local_shutdown_idx = 1337 ;
wallet_channel_save ( w , & c1 ) ;
wallet_channel_save ( w , & c1 , 0 ) ;
CHECK_MSG ( ! wallet_err , tal_fmt ( w , " Insert into DB: %s " , wallet_err ) ) ;
CHECK_MSG ( c2 = wallet_channel_load ( w , c1 . id ) , tal_fmt ( w , " Load from DB " ) ) ;
CHECK_MSG ( ! wallet_err ,