File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,8 @@ export async function sendTransaction(fastify: FastifyInstance) {
84
84
// Note: This is a temporary solution to cache the deployed address's factory for 7 days.
85
85
// This is needed due to a potential race condition of submitting a transaction immediately after creating an account that is not yet mined onchain
86
86
await redis . set (
87
- `account-factory:${ chainId } :${ validatedFactoryAddress . toLowerCase ( ) } ` ,
88
- factoryAddress ,
87
+ `account-factory:${ chainId } :${ accountAddress . toLowerCase ( ) } ` ,
88
+ validatedFactoryAddress ,
89
89
"EX" ,
90
90
7 * 24 * 60 * 60 ,
91
91
) ;
Original file line number Diff line number Diff line change @@ -79,8 +79,8 @@ export async function writeToContract(fastify: FastifyInstance) {
79
79
// Note: This is a temporary solution to cache the deployed address's factory for 7 days.
80
80
// This is needed due to a potential race condition of submitting a transaction immediately after creating an account that is not yet mined onchain
81
81
await redis . set (
82
- `account-factory:${ chainId } :${ validatedFactoryAddress . toLowerCase ( ) } ` ,
83
- factoryAddress ,
82
+ `account-factory:${ chainId } :${ accountAddress . toLowerCase ( ) } ` ,
83
+ validatedFactoryAddress ,
84
84
"EX" ,
85
85
7 * 24 * 60 * 60 ,
86
86
) ;
You can’t perform that action at this time.
0 commit comments