revertme: add debug print

This commit is contained in:
Alexey Shekhirin 2021-11-25 09:37:43 +03:00
parent ee5f539d01
commit 63993642c4
No known key found for this signature in database
GPG Key ID: AF9A26AA133B5B98
1 changed files with 4 additions and 0 deletions

View File

@ -93,6 +93,8 @@ mod tests {
) )
.await; .await;
println!("{:?}", success);
assert!(success.is_ok()); assert!(success.is_ok());
} }
@ -107,6 +109,8 @@ mod tests {
.await .await
.unwrap_err(); .unwrap_err();
println!("{:?}", err);
assert!(matches!(err, EtherscanError::TransactionReceiptFailed)); assert!(matches!(err, EtherscanError::TransactionReceiptFailed));
} }
} }