forgotten debug prints

feat/vaults
Tomáš Mládek 2022-02-10 11:39:04 +01:00
parent 674663028d
commit 423e039d0a
No known key found for this signature in database
GPG Key ID: ED21612889E75EC5
1 changed files with 0 additions and 2 deletions

View File

@ -250,7 +250,6 @@ pub async fn put_object(
match in_entry {
InEntry::Invariant(in_entry) => {
println!("INVARIANT: {in_entry:?}");
let invariant = Entry::try_from(&InvariantEntry {
attribute: in_entry.attribute,
value: in_entry.value,
@ -267,7 +266,6 @@ pub async fn put_object(
))
}
InEntry::Address { entity: in_address } => {
println!("IN_ADDRESS: {in_address:?}");
let address = in_address.try_into().map_err(ErrorBadRequest)?;
let entries_to_add = match &address {