Skip to content

Commit

Permalink
fix: fix merkle tree test and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
sebasti810 authored and distractedm1nd committed Jan 16, 2024
1 parent aea7630 commit 3c3494a
Show file tree
Hide file tree
Showing 2 changed files with 96 additions and 13 deletions.
103 changes: 93 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/da.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use crate::error::{GeneralError, DataAvailabilityError, DeimosError};
use crate::error::{GeneralError, DataAvailabilityError};
use crate::zk_snark::{Bls12Proof, VerifyingKey};
use celestia_types::blob::SubmitOptions;
use fs2::FileExt;
use tokio::{task::spawn, sync::Mutex};
use tokio::task::spawn;
use async_trait::async_trait;
use celestia_rpc::{Client, BlobClient, HeaderClient};
use celestia_types::{nmt::Namespace, Blob};
use serde::{Deserialize, Serialize};
use std::{self, sync::Arc, collections::HashMap};
use std::{self, sync::Arc};
use tokio::sync::mpsc;
use serde_json::json;
use std::fs::{File, OpenOptions};
Expand Down

0 comments on commit 3c3494a

Please sign in to comment.