File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 77Many other networks and L2s use forks of geth we can apply the changes to these forks using the following steps
88
991 . Generate a patch between the feature branch and master
10+ <<<<<<< HEAD
1011` git format-patch --stdout <sha1>..<sha2> > subql.patch `
12+ =======
13+ ` git format-patch --stdout master > subql.patch `
14+ >>>>>>> db90ac101 (Implement transactions bloom filter and subql apis)
1115
12162 . In the for repo ensure that the subquery geth for is a remote
1317
@@ -27,7 +31,10 @@ This will apply the changes but may require resolving some conflicts
2731These forks are generally behind the master geth branch. This can mean that further changes are requied to get builds suceeding.
2832
2933It's suggested to create a patch or patches of these changes to make it easier to sync changes from the fork and from geth in the future
34+ <<<<<<< HEAD
3035
3136You can do this by repeating steps 1, 3
3237
3338e.g ` git format-patch --stdout 2d772be398d851a62be53d1b0c162c45bb4876e3..c9760f18c15b8d36af7ef1a9bf5b21056f633b71 > build_fixes.patch `
39+ =======
40+ >>>>>>> db90ac101 (Implement transactions bloom filter and subql apis)
Original file line number Diff line number Diff line change @@ -202,6 +202,9 @@ func (f *Filter) Logs(ctx context.Context) ([]*types.Log, error) {
202202 return logs , nil
203203 }
204204 logs = append (logs , log )
205+ if checkLimit () {
206+ return logs , nil
207+ }
205208 case err := <- errChan :
206209 return logs , err
207210 }
You can’t perform that action at this time.
0 commit comments