Skip to content

Commit

Permalink
TxLock and finalize (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinlesceller committed Jul 31, 2020
1 parent 6c9cef1 commit 7a00337
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion api/src/owner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,9 @@ where
}
}
} 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),
Expand Down

0 comments on commit 7a00337

Please sign in to comment.