Skip to content

Commit

Permalink
cleanup 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigidity committed Dec 11, 2024
1 parent 58067f5 commit 0f28820
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions crates/chia-sdk-driver/src/primitives/vault/vault_primitive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ mod tests {
use std::collections::HashMap;

use chia_bls::DerivableKey;
use chia_puzzles::{singleton::SingletonSolution, EveProof, Proof};
use chia_puzzles::singleton::SingletonSolution;
use chia_sdk_test::Simulator;
use chia_sdk_types::{BlsMember, Conditions};
use clvm_traits::clvm_quote;
Expand Down Expand Up @@ -97,11 +97,8 @@ mod tests {
}),
)?;
let solution = ctx.alloc(&SingletonSolution {
lineage_proof: Proof::Eve(EveProof {
parent_parent_coin_info: coin.coin_id(),
parent_amount: 1,
}),
amount: 1,
lineage_proof: vault.proof,
amount: vault.coin.amount,
inner_solution,
})?;

Expand Down Expand Up @@ -172,11 +169,8 @@ mod tests {
)?;

let solution = ctx.alloc(&SingletonSolution {
lineage_proof: Proof::Eve(EveProof {
parent_parent_coin_info: coin.coin_id(),
parent_amount: 1,
}),
amount: 1,
lineage_proof: vault.proof,
amount: vault.coin.amount,
inner_solution,
})?;

Expand Down

0 comments on commit 0f28820

Please sign in to comment.