Skip to content

Commit

Permalink
Lookup fix (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierBBB authored Sep 13, 2024
1 parent 749b130 commit 28a8998
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions hub/lookups/hub_into_hub.lisp
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
(deflookup hub-into-hub-for-DEP_NUM_INFTY-coherence
;; target columns
(defun (hub-into-hub-source-selector) hub.scp_PEEK_AT_STORAGE)
(defun (hub-into-hub-target-selector) hub.acp_PEEK_AT_ACCOUNT) ;; ""

(deflookup hub-into-hub---FIRST-FINAL-in-block-deployment-number-coherence
;; target columns
(
(* hub.account/ADDRESS_HI hub.PEEK_AT_ACCOUNT)
(* hub.account/ADDRESS_HI hub.PEEK_AT_ACCOUNT)
(* hub.account/DEPLOYMENT_NUMBER_INFTY hub.PEEK_AT_ACCOUNT)
)
;; source columns
(* hub.acp_ADDRESS_HI (hub-into-hub-target-selector))
(* hub.acp_ADDRESS_LO (hub-into-hub-target-selector))
(* hub.acp_REL_BLK_NUM (hub-into-hub-target-selector))
(* hub.acp_DEPLOYMENT_NUMBER_FIRST_IN_BLOCK (hub-into-hub-target-selector))
(* hub.acp_DEPLOYMENT_NUMBER_FINAL_IN_BLOCK (hub-into-hub-target-selector))
)
;; source columns
(
(* hub.storage/ADDRESS_HI hub.PEEK_AT_STORAGE)
(* hub.storage/ADDRESS_HI hub.PEEK_AT_STORAGE)
(* hub.storage/DEPLOYMENT_NUMBER_INFTY hub.PEEK_AT_STORAGE)
)
)
(* hub.scp_ADDRESS_HI (hub-into-hub-source-selector))
(* hub.scp_ADDRESS_LO (hub-into-hub-source-selector))
(* hub.scp_REL_BLK_NUM (hub-into-hub-source-selector))
(* hub.scp_DEPLOYMENT_NUMBER_FIRST_IN_BLOCK (hub-into-hub-source-selector))
(* hub.scp_DEPLOYMENT_NUMBER_FINAL_IN_BLOCK (hub-into-hub-source-selector))
)
)

0 comments on commit 28a8998

Please sign in to comment.