@@ -325,7 +325,7 @@ var (
325325 if err != nil {
326326 return *outstruct, err
327327 }
328- {{range $i, $t := .Normalized.Outputs}}
328+ {{range $i, $t := .Normalized.Outputs}}
329329 outstruct.{{.Name}} = *abi.ConvertType(out[{{$i}}], new({{bindtype .Type $structs}})).(*{{bindtype .Type $structs}}){{end}}
330330
331331 return *outstruct, err
@@ -335,7 +335,7 @@ var (
335335 }
336336 {{range $i, $t := .Normalized.Outputs}}
337337 out{{$i}} := *abi.ConvertType(out[{{$i}}], new({{bindtype .Type $structs}})).(*{{bindtype .Type $structs}}){{end}}
338-
338+
339339 return {{range $i, $t := .Normalized.Outputs}}out{{$i}}, {{end}} err
340340 {{end}}
341341 }
@@ -378,7 +378,7 @@ var (
378378 }
379379 {{end}}
380380
381- {{if .Fallback}}
381+ {{if .Fallback}}
382382 // Fallback is a paid mutator transaction binding the contract fallback function.
383383 //
384384 // Solidity: {{.Fallback.Original.String}}
@@ -392,16 +392,16 @@ var (
392392 func (_{{$contract.Type}} *{{$contract.Type}}Session) Fallback(calldata []byte) (*types.Transaction, error) {
393393 return _{{$contract.Type}}.Contract.Fallback(&_{{$contract.Type}}.TransactOpts, calldata)
394394 }
395-
395+
396396 // Fallback is a paid mutator transaction binding the contract fallback function.
397- //
397+ //
398398 // Solidity: {{.Fallback.Original.String}}
399399 func (_{{$contract.Type}} *{{$contract.Type}}TransactorSession) Fallback(calldata []byte) (*types.Transaction, error) {
400400 return _{{$contract.Type}}.Contract.Fallback(&_{{$contract.Type}}.TransactOpts, calldata)
401401 }
402402 {{end}}
403403
404- {{if .Receive}}
404+ {{if .Receive}}
405405 // Receive is a paid mutator transaction binding the contract receive function.
406406 //
407407 // Solidity: {{.Receive.Original.String}}
@@ -415,9 +415,9 @@ var (
415415 func (_{{$contract.Type}} *{{$contract.Type}}Session) Receive() (*types.Transaction, error) {
416416 return _{{$contract.Type}}.Contract.Receive(&_{{$contract.Type}}.TransactOpts)
417417 }
418-
418+
419419 // Receive is a paid mutator transaction binding the contract receive function.
420- //
420+ //
421421 // Solidity: {{.Receive.Original.String}}
422422 func (_{{$contract.Type}} *{{$contract.Type}}TransactorSession) Receive() (*types.Transaction, error) {
423423 return _{{$contract.Type}}.Contract.Receive(&_{{$contract.Type}}.TransactOpts)
0 commit comments