Fix issue with CCIP Read using wrong sender (#2478).

This commit is contained in:
Richard Moore 2022-03-15 21:33:06 -04:00
parent dfaa8ee7e6
commit 5998fea53d

@ -845,7 +845,7 @@ export class BaseProvider extends Provider implements EnsProvider {
async ccipReadFetch(tx: Transaction, calldata: string, urls: Array<string>): Promise<null | string> {
if (this.disableCcipRead || urls.length === 0) { return null; }
const sender = (tx.from || "0x0000000000000000000000000000000000000000").toLowerCase();
const sender = tx.to.toLowerCase();
const data = calldata.toLowerCase();
const errorMessages: Array<string> = [ ];