Skip to content

Commit

Permalink
address review comments
Browse files Browse the repository at this point in the history
Signed-off-by: lukelee-sl <[email protected]>
  • Loading branch information
lukelee-sl committed Jul 20, 2022
1 parent de7efdd commit ffb4a00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/relay/src/lib/eth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ export class EthImpl implements Eth {
return predefined.UNSUPPORTED_METHOD;
}

getStorageAt(_address: string, _slot: string, _blockNumber: string | null): JsonRpcError {
this.logger.trace('getStorageAt()');
getStorageAt(address: string, slot: string, blockNumber: string | null): JsonRpcError {
this.logger.trace('getStorageAt(account=%s, slot=%s, blockNumber=%s)', address, slot, blockNumber);
return predefined.UNSUPPORTED_METHOD;
}

Expand Down

0 comments on commit ffb4a00

Please sign in to comment.