Skip to content

Commit f39e453

Browse files
fork: apply master changes to old-geth
1 parent fd6fcc0 commit f39e453

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ jobs:
5252
cache-from: type=local,src=/tmp/.buildx-cache
5353
cache-to: type=local,dest=/tmp/.buildx-cache
5454
tags: |
55-
ghcr.io/grassrootseconomics/eth-tracker:${{ env.RELEASE_TAG }}
55+
ghcr.io/iNethi/eth-tracker:${{ env.RELEASE_TAG }}

internal/handler/token_transfer.go

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ func HandleTokenTransferLog(hc *HandlerContainer) router.LogHandlerFunc {
3030
return err
3131
}
3232

33-
proceed, err := hc.checkWithinNetwork(ctx, lp.Log.Address.Hex(), from.Hex(), to.Hex())
34-
if err != nil {
35-
return err
36-
}
37-
if !proceed {
38-
return nil
39-
}
33+
// proceed, err := hc.checkWithinNetwork(ctx, lp.Log.Address.Hex(), from.Hex(), to.Hex())
34+
// if err != nil {
35+
// return err
36+
// }
37+
// if !proceed {
38+
// return nil
39+
// }
4040

4141
tokenTransferEvent := event.Event{
4242
Index: lp.Log.Index,
@@ -79,13 +79,13 @@ func HandleTokenTransferInputData(hc *HandlerContainer) router.InputDataHandlerF
7979
return err
8080
}
8181

82-
proceed, err := hc.checkWithinNetwork(ctx, idp.ContractAddress, idp.From, to.Hex())
83-
if err != nil {
84-
return err
85-
}
86-
if !proceed {
87-
return nil
88-
}
82+
// proceed, err := hc.checkWithinNetwork(ctx, idp.ContractAddress, idp.From, to.Hex())
83+
// if err != nil {
84+
// return err
85+
// }
86+
// if !proceed {
87+
// return nil
88+
// }
8989

9090
tokenTransferEvent.Payload = map[string]any{
9191
"from": idp.From,
@@ -105,13 +105,13 @@ func HandleTokenTransferInputData(hc *HandlerContainer) router.InputDataHandlerF
105105
return err
106106
}
107107

108-
proceed, err := hc.checkWithinNetwork(ctx, idp.ContractAddress, from.Hex(), to.Hex())
109-
if err != nil {
110-
return err
111-
}
112-
if !proceed {
113-
return nil
114-
}
108+
// proceed, err := hc.checkWithinNetwork(ctx, idp.ContractAddress, from.Hex(), to.Hex())
109+
// if err != nil {
110+
// return err
111+
// }
112+
// if !proceed {
113+
// return nil
114+
// }
115115

116116
tokenTransferEvent.Payload = map[string]any{
117117
"from": from.Hex(),

0 commit comments

Comments
 (0)