Skip to content

Commit 8fda8d2

Browse files
authored
Merge pull request #1160 from fluidvanadium/grace_note
Send Required Dust
2 parents e14ac89 + ca46686 commit 8fda8d2

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

integration-tests/tests/chain_generic_tests.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ use zcash_client_backend::ShieldedProtocol::Sapling;
55

66
use zingo_testutils::chain_generic_tests::fixtures::ignore_dust_inputs;
77
use zingo_testutils::chain_generic_tests::fixtures::propose_and_broadcast_value_to_pool;
8-
use zingo_testutils::chain_generic_tests::fixtures::send_grace_input;
8+
use zingo_testutils::chain_generic_tests::fixtures::send_required_dust;
99
use zingo_testutils::chain_generic_tests::fixtures::send_shield_cycle;
1010
use zingo_testutils::chain_generic_tests::fixtures::send_value_to_pool;
1111

@@ -41,9 +41,8 @@ async fn libtonode_send_shield_cycle() {
4141
send_shield_cycle::<LibtonodeEnvironment>(4).await;
4242
}
4343
#[tokio::test]
44-
#[ignore]
45-
async fn libtonode_send_grace_input() {
46-
send_grace_input::<LibtonodeEnvironment>().await;
44+
async fn libtonode_send_required_dust() {
45+
send_required_dust::<LibtonodeEnvironment>().await;
4746
}
4847
#[tokio::test]
4948
async fn libtonode_ignore_dust_inputs() {

zingo-testutils/src/chain_generic_tests.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,12 +169,12 @@ pub mod fixtures {
169169
}
170170

171171
/// uses a dust input to pad another input to finish a transaction
172-
pub async fn send_grace_input<CC>()
172+
pub async fn send_required_dust<CC>()
173173
where
174174
CC: ConductChain,
175175
{
176176
let mut environment = CC::setup().await;
177-
let primary = environment.fund_client_orchard(115_000).await;
177+
let primary = environment.fund_client_orchard(120_000).await;
178178
let secondary = environment.create_client().await;
179179

180180
assert_eq!(

0 commit comments

Comments
 (0)