Skip to content

Commit

Permalink
fix: Remove fmt print
Browse files Browse the repository at this point in the history
Signed-off-by: Enrique Lacal <[email protected]>
  • Loading branch information
EnriqueL8 committed May 30, 2023
1 parent 24e96d7 commit 9af5ad6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/abi/abidecode.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,6 @@ func decodeABILength(ctx context.Context, desc string, block []byte, offset int)
if offset+32 > len(block) {
return -1, i18n.NewError(ctx, signermsgs.MsgNotEnoughBytesABIArrayCount, desc)
}
newBlock := block[offset : offset+32]
fmt.Println(newBlock)
i := new(big.Int).SetBytes(block[offset : offset+32])
if i.BitLen() > 32 {
return -1, i18n.NewError(ctx, signermsgs.MsgABIArrayCountTooLarge, i.Text(10), desc)
Expand Down

0 comments on commit 9af5ad6

Please sign in to comment.