Fixed yet another code inspection fault.

This commit is contained in:
Robert C. Martin 2022-09-19 11:28:45 -05:00
parent 5d169ceb82
commit ff8907b9fa
2 changed files with 2 additions and 3 deletions

View File

@ -12,7 +12,7 @@
(def migration-level 9)
(def version "202209191120")
(def test-run? true)
(def test-run? false)
;---configuration files
(def private-directory (atom "private"))
(def migration-filename (atom "private/migration"))

View File

@ -17,6 +17,5 @@
my-updated-contacts))
(defn entrust-and-send [his-pubkey his-petname]
(let [event-context (:event-context @ui-context)
my-contact-list (entrust his-pubkey his-petname)]
(let [my-contact-list (entrust his-pubkey his-petname)]
(events/compose-and-send-contact-list my-contact-list)))