Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
Fix conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyera Eulberg committed Apr 1, 2021
1 parent 9179504 commit 4bf233d
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions ledger/src/blockstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2200,12 +2200,8 @@ impl Blockstore {
let (slot, mut before_excluded_signatures) = match before {
None => (highest_slot, None),
Some(before) => {
<<<<<<< HEAD
let transaction_status = self.get_transaction_status(before, true)?;
=======
let transaction_status =
self.get_transaction_status(before, &confirmed_unrooted_slots)?;
>>>>>>> da27acabc... Rpc: enable getConfirmedSignaturesForAddress2 to return confirmed (not yet finalized) data (#16281)
match transaction_status {
None => return Ok(vec![]),
Some((slot, _)) => {
Expand Down Expand Up @@ -2255,12 +2251,8 @@ impl Blockstore {
let (lowest_slot, until_excluded_signatures) = match until {
None => (0, HashSet::new()),
Some(until) => {
<<<<<<< HEAD
let transaction_status = self.get_transaction_status(until, true)?;
=======
let transaction_status =
self.get_transaction_status(until, &confirmed_unrooted_slots)?;
>>>>>>> da27acabc... Rpc: enable getConfirmedSignaturesForAddress2 to return confirmed (not yet finalized) data (#16281)
match transaction_status {
None => (0, HashSet::new()),
Some((slot, _)) => {
Expand Down Expand Up @@ -2404,12 +2396,8 @@ impl Blockstore {
let mut get_status_info_timer = Measure::start("get_status_info_timer");
let mut infos = vec![];
for (slot, signature) in address_signatures.into_iter() {
<<<<<<< HEAD
let transaction_status = self.get_transaction_status(signature, true)?;
=======
let transaction_status =
self.get_transaction_status(signature, &confirmed_unrooted_slots)?;
>>>>>>> da27acabc... Rpc: enable getConfirmedSignaturesForAddress2 to return confirmed (not yet finalized) data (#16281)
let err = match transaction_status {
None => None,
Some((_slot, status)) => status.status.err(),
Expand Down

0 comments on commit 4bf233d

Please sign in to comment.