From 24c57c91097bb447c9d6bbc7754c4fcde3e8c714 Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 29 Jan 2024 14:58:14 -0600 Subject: [PATCH] move prover logic from node --- codex/slots/proofs/prover.nim | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/codex/slots/proofs/prover.nim b/codex/slots/proofs/prover.nim index 713f9689..e3d1a41d 100644 --- a/codex/slots/proofs/prover.nim +++ b/codex/slots/proofs/prover.nim @@ -1,12 +1,12 @@ -# ## Nim-Codex -# ## Copyright (c) 2024 Status Research & Development GmbH -# ## Licensed under either of -# ## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE)) -# ## * MIT license ([LICENSE-MIT](LICENSE-MIT)) -# ## at your option. -# ## This file may not be copied, modified, or distributed except according to -# ## those terms. -# ## +## Nim-Codex +## Copyright (c) 2024 Status Research & Development GmbH +## Licensed under either of +## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE)) +## * MIT license ([LICENSE-MIT](LICENSE-MIT)) +## at your option. +## This file may not be copied, modified, or distributed except according to +## those terms. +## import pkg/chronos import pkg/chronicles @@ -25,8 +25,10 @@ import ../../utils/poseidon2digest import ../builder import ../sampler -# import ./backends -# import ../types +import ../../manifest +import ../../merkletree +import ../../stores +import ../../market export backends