Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yperbasis committed Sep 18, 2024
1 parent 274fcf2 commit 1e369c9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions silkworm/db/kv/grpc/client/remote_transaction_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ static remote::Pair make_fake_tx_created_pair() {
return pair;
}

bool ensure_fake_tx_created_tx_id(const RemoteTransaction& remote_tx_) {
return remote_tx_.tx_id() == 1;
bool ensure_fake_tx_created_tx_id(const RemoteTransaction& remote_tx) {
return remote_tx.tx_id() == 1;
}

bool ensure_fake_tx_created_view_id(const RemoteTransaction& remote_tx_) {
return remote_tx_.view_id() == 4;
bool ensure_fake_tx_created_view_id(const RemoteTransaction& remote_tx) {
return remote_tx.view_id() == 4;
}

#ifndef SILKWORM_SANITIZE
Expand Down

0 comments on commit 1e369c9

Please sign in to comment.