Skip to content

Commit

Permalink
Fix txn schema to allow just asserts again
Browse files Browse the repository at this point in the history
  • Loading branch information
cap10morgan committed May 10, 2023
1 parent e2abfbf commit 4b0a400
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/fluree/db/json_ld/transact.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
::txn-leaf-map [:map-of
[:orn [:string :string] [:keyword :keyword]]
:any]
::retract [:map [:retract ::txn-leaf-map]]
::modification ::v/modification-txn
::txn-map [:and
::retract [:and
[:map-of :keyword :any]
[:orn
[:retract ::retract]
[:modification ::modification]
[:assert ::txn-leaf-map]]]
[:map [:retract ::txn-leaf-map]]]
::modification ::v/modification-txn
::txn-map [:orn
[:retract ::retract]
[:modification ::modification]
[:assert ::txn-leaf-map]]
::txn [:orn
[:single-map ::txn-map]
[:sequence-of-maps [:sequential ::txn-map]]]}))
Expand Down

0 comments on commit 4b0a400

Please sign in to comment.