fix broken imports

This commit is contained in:
aggstam
2023-01-09 18:26:50 +02:00
parent 0e8f891e7f
commit 971ea62ab8
5 changed files with 5 additions and 5 deletions

View File

@@ -37,7 +37,7 @@ use darkfi_money_contract::{
MONEY_COINS_COL_VALUE_BLIND, MONEY_COINS_TABLE, MONEY_INFO_COL_LAST_SCANNED_SLOT,
MONEY_INFO_TABLE,
},
state::{MoneyTransferParams, Output},
model::{MoneyTransferParams, Output},
MoneyFunction,
};
use darkfi_sdk::{

View File

@@ -25,7 +25,7 @@ use darkfi::{
};
use darkfi_money_contract::{
client::{build_half_swap_tx, EncryptedNote, Note},
state::MoneyTransferParams,
model::MoneyTransferParams,
MoneyFunction, MONEY_CONTRACT_ZKAS_BURN_NS_V1, MONEY_CONTRACT_ZKAS_MINT_NS_V1,
};
use darkfi_sdk::{

View File

@@ -32,7 +32,7 @@ use darkfi_sdk::{
use darkfi_serial::{deserialize, serialize, Decodable, Encodable, WriteExt};
use darkfi_money_contract::{
state::MoneyTransferParams, MoneyFunction, MONEY_CONTRACT_COIN_ROOTS_TREE,
model::MoneyTransferParams, MoneyFunction, MONEY_CONTRACT_COIN_ROOTS_TREE,
MONEY_CONTRACT_NULLIFIERS_TREE,
};

View File

@@ -29,7 +29,7 @@ use rand::rngs::OsRng;
use darkfi_money_contract::{
client::{create_transfer_burn_proof, create_transfer_mint_proof, Note},
state::{ClearInput, Input, MoneyTransferParams, Output},
model::{ClearInput, Input, MoneyTransferParams, Output},
};
pub struct TransferCall {

View File

@@ -32,7 +32,7 @@ use darkfi_dao_contract::{
dao_client, dao_model, money_client, note, wallet_cache::WalletCache, DaoFunction,
};
use darkfi_money_contract::{client::EncryptedNote, state::MoneyTransferParams, MoneyFunction};
use darkfi_money_contract::{client::EncryptedNote, model::MoneyTransferParams, MoneyFunction};
mod harness;
use harness::{init_logger, DaoTestHarness};