Skip to content

Commit

Permalink
Fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinOndejka committed Jul 27, 2023
1 parent d50ee90 commit e91699e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ocaml/dune
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
../kimchi/js/node_js/plonk_wasm_bg.wasm)
(instrumentation
(backend bisect_ppx))
(forbidden_libraries async core re2 ctypes)
(forbidden_libraries re2 ctypes)
(preprocess
(pps ppx_version js_of_ocaml-ppx)))

Expand Down
9 changes: 5 additions & 4 deletions ocaml/lib/snarky_js_bindings_lib.ml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module Js = Js_of_ocaml.Js
open Core_kernel

let rollup =
let open Mina_base in
Expand Down Expand Up @@ -200,10 +201,10 @@ let export_global () =
Js.Unsafe.(
let i = inject in
obj
[| ("Snarky", i snarky)
; ("Ledger", i Ledger.ledger_class)
; ("Pickles", i pickles)
; ("Test", i test)
[| ("Snarky", i Snarky_bindings.snarky)
; ("Ledger", i Local_ledger.ledger_class)
; ("Pickles", i Pickles_bindings.pickles)
; ("Test", i Consistency_test.test)
; ("Rollup", i rollup)
|])
in
Expand Down

0 comments on commit e91699e

Please sign in to comment.