File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 8181
8282 - name : Build and deploy
8383 run : |
84- docker compose -f docker-compose.db.yml up postgres --force-recreate -d
8584 docker compose -f docker-compose.yml -p ${{ matrix.env }}-indexer build indexer
8685 docker compose -f docker-compose.yml -p ${{ matrix.env }}-indexer up indexer --force-recreate -d
Original file line number Diff line number Diff line change @@ -38,7 +38,11 @@ async function runProcessor() {
3838 processor . setGateway ( process . env . ARCHIVE ) ;
3939 }
4040
41- const db = new TypeormDatabase ( { stateSchema : process . env . INDEXER_NAME } ) ;
41+ const db = new TypeormDatabase ( {
42+ stateSchema : process . env . INDEXER_NAME ,
43+ supportHotBlocks : false ,
44+ } ) ;
45+
4246 processor . run ( db , async ( ctx ) => {
4347 const transactions : Transaction [ ] = [ ] ;
4448 const eventPromises : Promise < void > [ ] = [ ] ;
You can’t perform that action at this time.
0 commit comments