File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use zcash_client_backend::ShieldedProtocol::Sapling;
5
5
6
6
use zingo_testutils:: chain_generic_tests:: fixtures:: ignore_dust_inputs;
7
7
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 ;
9
9
use zingo_testutils:: chain_generic_tests:: fixtures:: send_shield_cycle;
10
10
use zingo_testutils:: chain_generic_tests:: fixtures:: send_value_to_pool;
11
11
@@ -41,9 +41,8 @@ async fn libtonode_send_shield_cycle() {
41
41
send_shield_cycle :: < LibtonodeEnvironment > ( 4 ) . await ;
42
42
}
43
43
#[ 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 ;
47
46
}
48
47
#[ tokio:: test]
49
48
async fn libtonode_ignore_dust_inputs ( ) {
Original file line number Diff line number Diff line change @@ -169,12 +169,12 @@ pub mod fixtures {
169
169
}
170
170
171
171
/// 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 > ( )
173
173
where
174
174
CC : ConductChain ,
175
175
{
176
176
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 ;
178
178
let secondary = environment. create_client ( ) . await ;
179
179
180
180
assert_eq ! (
You can’t perform that action at this time.
0 commit comments