Skip to content

Commit 5327a59

Browse files
committed
chore: fix merge artifacts
1 parent 419801b commit 5327a59

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

stackslib/src/net/relay.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ impl Relayer {
931931
&block.header.consensus_hash,
932932
&block.header.block_hash(),
933933
&obtained_method;
934-
"block_id" => &block.header.block_id(),
934+
"block_id" => %block.header.block_id(),
935935
);
936936

937937
if fault_injection::ignore_block(block.header.chain_length, &burnchain.working_dir) {

stackslib/src/net/stackerdb/sync.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,6 @@ impl<NC: NeighborComms> StackerDBSync<NC> {
568568
old_slot_id,
569569
old_version,
570570
new_inv.slot_versions[old_slot_id],
571-
&self.smart_contract_id,
572571
);
573572
resync = true;
574573
break;
@@ -913,7 +912,6 @@ impl<NC: NeighborComms> StackerDBSync<NC> {
913912
network.get_local_peer(),
914913
&self.smart_contract_id,
915914
&naddr,
916-
&self.smart_contract_id,
917915
data.error_code
918916
);
919917
if data.error_code == NackErrorCodes::StaleView
@@ -1075,7 +1073,6 @@ impl<NC: NeighborComms> StackerDBSync<NC> {
10751073
network.get_local_peer(),
10761074
&self.smart_contract_id,
10771075
&naddr,
1078-
&self.smart_contract_id,
10791076
data.error_code
10801077
);
10811078
if data.error_code == NackErrorCodes::StaleView

0 commit comments

Comments
 (0)