mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
fix broken imports
This commit is contained in:
@@ -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::{
|
||||
|
||||
@@ -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::{
|
||||
|
||||
@@ -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,
|
||||
};
|
||||
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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};
|
||||
|
||||
Reference in New Issue
Block a user