From b71694706b9607c8d2664b07ee8ca0252ffb14a5 Mon Sep 17 00:00:00 2001 From: tomyrd Date: Mon, 6 May 2024 12:35:13 -0300 Subject: [PATCH] Erase TODO, fixed in PR #297 --- src/cli/input_notes.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/cli/input_notes.rs b/src/cli/input_notes.rs index 2f8c4bc01..a0ac1fef2 100644 --- a/src/cli/input_notes.rs +++ b/src/cli/input_notes.rs @@ -188,8 +188,6 @@ pub async fn import_note( .and_then(|mut f| f.read_to_end(&mut contents)) .map_err(|err| err.to_string()); - // TODO: When importing a RecordedNote we want to make sure that the note actually exists in the chain (RPC call) - // and start monitoring its nullifiers (ie, update the list of relevant tags in the state sync table) let input_note_record = InputNoteRecord::read_from_bytes(&contents).map_err(|err| err.to_string())?;