Skip to content

Commit

Permalink
Removing debug Println... Ups
Browse files Browse the repository at this point in the history
  • Loading branch information
0x19 committed Oct 18, 2023
1 parent a2e55c5 commit 9f48cf2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion bytecode/constructor.go
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ func (c *Constructor) Pack() ([]byte, error) {
// If they match, it creates an Argument object for each input and adds it to the arguments slice.
// Finally, it returns a Constructor object containing the ABI, raw signature, and arguments.
func DecodeConstructorFromAbi(bytecode []byte, constructorAbi string) (*Constructor, error) {
fmt.Println(constructorAbi)
parsed, err := abi.JSON(strings.NewReader(constructorAbi))
if err != nil {
return nil, fmt.Errorf("failed to parse ABI: %w", err)
Expand Down

0 comments on commit 9f48cf2

Please sign in to comment.