From e87db89e218300af2a8384df8528df0e3e57bf78 Mon Sep 17 00:00:00 2001 From: MariusVanDerWijden Date: Fri, 13 Dec 2019 14:19:57 +0100 Subject: [PATCH] accounts/abi/bind fixed comment --- accounts/abi/bind/base.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accounts/abi/bind/base.go b/accounts/abi/bind/base.go index 499b4bda07..002aba923b 100644 --- a/accounts/abi/bind/base.go +++ b/accounts/abi/bind/base.go @@ -166,7 +166,7 @@ func (c *BoundContract) Call(opts *CallOpts, result interface{}, method string, // Transact invokes the (paid) contract method with params as input values. func (c *BoundContract) Transact(opts *TransactOpts, method string, params ...interface{}) (*types.Transaction, error) { - // Otherwise pack up the parameters and invoke the contract + // Pack up the parameters and invoke the contract input, err := c.abi.Pack(method, params...) if err != nil { return nil, err