Skip to content

Remove zip317 gate #1184

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion darkside-tests/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ pub mod scenarios {
DarksideSender::IndexedClient(n) => self.get_lightclient(n),
DarksideSender::ExternalClient(lc) => lc,
};
zingo_testutils::lightclient::from_inputs::send(
zingo_testutils::lightclient::from_inputs::old_send(
lightclient,
vec![(receiver_address, value, None)],
)
Expand Down
21 changes: 12 additions & 9 deletions darkside-tests/tests/advanced_reorg_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -557,9 +557,10 @@ async fn reorg_changes_outgoing_tx_height() {

// Send 100000 zatoshi to some address
let amount: u64 = 100000;
let sent_tx_id = from_inputs::send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();
let sent_tx_id =
from_inputs::old_send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();

println!("SENT TX ID: {:?}", sent_tx_id);

Expand Down Expand Up @@ -795,9 +796,10 @@ async fn reorg_expires_outgoing_tx_height() {

// Send 100000 zatoshi to some address
let amount: u64 = 100000;
let sent_tx_id = from_inputs::send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();
let sent_tx_id =
from_inputs::old_send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();

println!("SENT TX ID: {:?}", sent_tx_id);

Expand Down Expand Up @@ -975,9 +977,10 @@ async fn reorg_changes_outgoing_tx_index() {

// Send 100000 zatoshi to some address
let amount: u64 = 100000;
let sent_tx_id = from_inputs::send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();
let sent_tx_id =
from_inputs::old_send(&light_client, [(recipient_string, amount, None)].to_vec())
.await
.unwrap();

println!("SENT TX ID: {:?}", sent_tx_id);

Expand Down
Loading
Loading