Skip to content

Commit

Permalink
fixed issue with decodelist and no elements
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Rojo <miguelangel.rojofernandez@mastercard.com>
  • Loading branch information
freemanzMrojo committed Aug 19, 2022
1 parent 2188c66 commit e4663e7
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public TransactionProcessingResult processTransaction(
final Function<Long, Hash> blockHashLookup,
final Bytes privacyGroupId) {
try {
LOG.error("Starting private execution of {}", transaction);
LOG.trace("Starting private execution of {}", transaction);

final Address senderAddress = transaction.getSender();
final EvmAccount maybePrivateSender = privateWorldState.getAccount(senderAddress);
Expand All @@ -110,7 +110,7 @@ public TransactionProcessingResult processTransaction(
}

final long previousNonce = sender.incrementNonce();
LOG.error(
LOG.trace(
"Incremented private sender {} nonce ({} -> {})",
senderAddress,
previousNonce,
Expand Down Expand Up @@ -142,7 +142,7 @@ public TransactionProcessingResult processTransaction(
final Address privateContractAddress =
Address.privateContractAddress(senderAddress, previousNonce, privacyGroupId);

LOG.error(
LOG.debug(
"Calculated contract address {} from sender {} with nonce {} and privacy group {}",
privateContractAddress,
senderAddress,
Expand Down

0 comments on commit e4663e7

Please sign in to comment.