CHANGE lyht_insert calls according to new function prototype
diff --git a/src/validation.c b/src/validation.c
index 22ee679..ee10fce 100644
--- a/src/validation.c
+++ b/src/validation.c
@@ -375,7 +375,7 @@
             hash = dict_hash_multi(hash, NULL, 0);
 
             /* insert into the hashtable */
-            if (lyht_insert(keystable, &set->set.d[u], hash)) {
+            if (lyht_insert(keystable, &set->set.d[u], hash, NULL)) {
                 ret = 1;
                 goto unique_cleanup;
             }
@@ -410,7 +410,7 @@
                 hash = dict_hash_multi(hash, NULL, 0);
 
                 /* insert into the hashtable */
-                if (lyht_insert(uniquetables[j], &set->set.d[u], hash)) {
+                if (lyht_insert(uniquetables[j], &set->set.d[u], hash, NULL)) {
                     ret = 1;
                     goto unique_cleanup;
                 }