Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 3 additions & 0 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion contracts/fractional/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
)]

#[ink::contract]
mod fractional {
pub mod fractional {
use ink::prelude::vec::Vec;
use ink::storage::Mapping;
use propchain_traits::{self, non_reentrant, ReentrancyError, ReentrancyGuard};
Expand Down
2 changes: 1 addition & 1 deletion contracts/gdpr/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
)]

#[ink::contract]
mod gdpr_consent {
pub mod gdpr_consent {
use ink::prelude::vec::Vec;
use ink::storage::Mapping;

Expand Down
2 changes: 1 addition & 1 deletion contracts/ipfs-metadata/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use ink::storage::Mapping;

#[ink::contract]
#[allow(clippy::too_many_arguments)]
mod ipfs_metadata {
pub mod ipfs_metadata {
use super::*;

// ============================================================================
Expand Down
8 changes: 8 additions & 0 deletions tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ propchain-bridge = { path = "../contracts/bridge", default-features = false }
oracle = { path = "../contracts/oracle", default-features = false }
propchain-insurance = { path = "../contracts/insurance", default-features = false }

# Issue #1005 / #1006 / #1007: contract crates needed for new test modules
propchain-gdpr = { path = "../contracts/gdpr", default-features = false }
propchain-factory = { path = "../contracts/factory", default-features = false }
ipfs-metadata = { path = "../contracts/ipfs-metadata", default-features = false }

# Async runtime
tokio = { version = "1.0", features = ["full"], optional = true }

Expand Down Expand Up @@ -62,6 +67,9 @@ std = [
"staking/std",
"propchain-bridge/std",
"propchain-insurance/std",
"propchain-gdpr/std",
"propchain-factory/std",
"ipfs-metadata/std",
"serde/std",
"serde_json/std",
"tokio",
Expand Down
Loading
Loading