TxLock and finalize (#485)

This commit is contained in:
Quentin Le Sceller 2020-07-31 05:36:23 -04:00 committed by GitHub
parent 6c9cef1370
commit 7a003374ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -701,7 +701,9 @@ where
} }
} }
} else { } else {
return Ok(slate); self.tx_lock_outputs(keychain_mask, &s)?;
let ret_slate = self.finalize_tx(keychain_mask, &s)?;
return Ok(ret_slate);
} }
} }
Ok(None) => Ok(slate), Ok(None) => Ok(slate),