Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MGT-38] feat: do not process assets with gaps #111

Merged
merged 8 commits into from
May 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into feat/418-status
# Conflicts:
#	digital_asset_types/src/dapi/change_logs.rs
#	interface/src/lib.rs
#	rocks-db/src/asset_client.rs
  • Loading branch information
RequescoS committed May 17, 2024
commit 842c7ba4a3a57dfac973ccec04a229abe8e5c100
2 changes: 1 addition & 1 deletion digital_asset_types/src/dapi/change_logs.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::sync::Arc;
use std::collections::HashMap;
use std::panic;
use std::sync::Arc;
use std::{collections::HashMap, str::FromStr};

use interface::proofs::ProofChecker;
Expand Down
4 changes: 4 additions & 0 deletions interface/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ pub mod asset_sigratures;
pub mod asset_streaming_and_discovery;
pub mod consistency_check;
pub mod error;
pub mod fork_cleaner;
pub mod json;
pub mod proofs;
pub mod rollup;
pub mod processing_possibility;
pub mod sequence_consistent;
pub mod signature_persistence;
Expand Down
1 change: 1 addition & 0 deletions rocks-db/src/asset_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use crate::errors::StorageError;
use crate::key_encoders::encode_u64x2_pubkey;
use crate::{Result, Storage};
use interface::processing_possibility::ProcessingPossibilityChecker;
use entities::models::{EditionData, PubkeyWithSlot};
use std::collections::HashMap;

impl Storage {
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.