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

Commit

Permalink
fix conflict...
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoqun committed Oct 7, 2023
1 parent 1822022 commit a8a447e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
5 changes: 1 addition & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 2 additions & 10 deletions core/src/banking_trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,12 @@ pub struct BankingTracer {
active_tracer: Option<ActiveTracer>,
}

<<<<<<< HEAD
#[derive(Serialize, Deserialize, Debug)]
pub struct TimedTracedEvent(std::time::SystemTime, TracedEvent);

#[derive(Serialize, Deserialize, Debug)]
enum TracedEvent {
=======
#[frozen_abi(digest = "Eq6YrAFtTbtPrCEvh6Et1mZZDCARUg1gcK2qiZdqyjUz")]
#[derive(Serialize, Deserialize, Debug, AbiExample)]
pub struct TimedTracedEvent(pub std::time::SystemTime, pub TracedEvent);
pub struct TimedTracedEvent(std::time::SystemTime, TracedEvent);

#[derive(Serialize, Deserialize, Debug, AbiExample, AbiEnumVisitor)]
pub enum TracedEvent {
>>>>>>> 95810d876a (Enable frozen_abi on banking trace file (#33501))
enum TracedEvent {
PacketBatch(ChannelLabel, BankingPacketBatch),
BlockAndBankHash(Slot, Hash, Hash),
}
Expand Down

0 comments on commit a8a447e

Please sign in to comment.