Skip to content

Commit

Permalink
Merge pull request #7 from arhamj/abi-generator
Browse files Browse the repository at this point in the history
Abi generator
  • Loading branch information
arhamj authored Oct 6, 2022
2 parents 7d86a84 + f6cb50e commit 69ba5bc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions cmd/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ func (a *app) setupApp(c *cli.Context) error {
return err
}
a.bytecodeParser = parser
a.bytecode = resp
a.logger = zap.L()
scraperDb, err := util.NewSQLiteDB("db/scraper.db", scraper.FourByteMigrations)
if err != nil {
Expand Down
4 changes: 1 addition & 3 deletions pkg/service/bytecode_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,5 @@ func (b BytecodeService) GetDecodedEventSigns(bytecodeParser asm.BytecodeParser)
}

func (b BytecodeService) GetABI(bytecodeParser asm.BytecodeParser) string {
//events := b.GetEventSigns(bytecodeParser)
//functions := b.GetDecodedFunctionSigns(bytecodeParser)
return ""
panic("Implement me!")
}

0 comments on commit 69ba5bc

Please sign in to comment.