Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: implement quicknode geth vs reth output comparison #775

Prev Previous commit
Next Next commit
fic prettier
  • Loading branch information
jsy1218 committed Jul 15, 2024
commit 31aabe0094a7e28ecb7371ebccb9761c53b90863
4 changes: 1 addition & 3 deletions lib/rpc/UniJsonRpcProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,7 @@ export class UniJsonRpcProvider extends StaticJsonRpcProvider {
if (serializedProviderResponse !== serializedEvaluatedProviderResponse) {
this.log.error(
{ methodName, args },
`Provider response mismatch: ${serializedProviderResponse} from ${
selectedProvider.providerId
} vs ${serializedEvaluatedProviderResponse} from ${otherProvider.providerId}`
`Provider response mismatch: ${serializedProviderResponse} from ${selectedProvider.providerId} vs ${serializedEvaluatedProviderResponse} from ${otherProvider.providerId}`
)
selectedProvider.logRpcResponseMismatch(methodName, otherProvider)
} else {
Expand Down