@@ -325,7 +325,7 @@ var (
325
325
if err != nil {
326
326
return *outstruct, err
327
327
}
328
- {{range $i, $t := .Normalized.Outputs}}
328
+ {{range $i, $t := .Normalized.Outputs}}
329
329
outstruct.{{.Name}} = *abi.ConvertType(out[{{$i}}], new({{bindtype .Type $structs}})).(*{{bindtype .Type $structs}}){{end}}
330
330
331
331
return *outstruct, err
@@ -335,7 +335,7 @@ var (
335
335
}
336
336
{{range $i, $t := .Normalized.Outputs}}
337
337
out{{$i}} := *abi.ConvertType(out[{{$i}}], new({{bindtype .Type $structs}})).(*{{bindtype .Type $structs}}){{end}}
338
-
338
+
339
339
return {{range $i, $t := .Normalized.Outputs}}out{{$i}}, {{end}} err
340
340
{{end}}
341
341
}
@@ -378,7 +378,7 @@ var (
378
378
}
379
379
{{end}}
380
380
381
- {{if .Fallback}}
381
+ {{if .Fallback}}
382
382
// Fallback is a paid mutator transaction binding the contract fallback function.
383
383
//
384
384
// Solidity: {{.Fallback.Original.String}}
@@ -392,16 +392,16 @@ var (
392
392
func (_{{$contract.Type}} *{{$contract.Type}}Session) Fallback(calldata []byte) (*types.Transaction, error) {
393
393
return _{{$contract.Type}}.Contract.Fallback(&_{{$contract.Type}}.TransactOpts, calldata)
394
394
}
395
-
395
+
396
396
// Fallback is a paid mutator transaction binding the contract fallback function.
397
- //
397
+ //
398
398
// Solidity: {{.Fallback.Original.String}}
399
399
func (_{{$contract.Type}} *{{$contract.Type}}TransactorSession) Fallback(calldata []byte) (*types.Transaction, error) {
400
400
return _{{$contract.Type}}.Contract.Fallback(&_{{$contract.Type}}.TransactOpts, calldata)
401
401
}
402
402
{{end}}
403
403
404
- {{if .Receive}}
404
+ {{if .Receive}}
405
405
// Receive is a paid mutator transaction binding the contract receive function.
406
406
//
407
407
// Solidity: {{.Receive.Original.String}}
@@ -415,9 +415,9 @@ var (
415
415
func (_{{$contract.Type}} *{{$contract.Type}}Session) Receive() (*types.Transaction, error) {
416
416
return _{{$contract.Type}}.Contract.Receive(&_{{$contract.Type}}.TransactOpts)
417
417
}
418
-
418
+
419
419
// Receive is a paid mutator transaction binding the contract receive function.
420
- //
420
+ //
421
421
// Solidity: {{.Receive.Original.String}}
422
422
func (_{{$contract.Type}} *{{$contract.Type}}TransactorSession) Receive() (*types.Transaction, error) {
423
423
return _{{$contract.Type}}.Contract.Receive(&_{{$contract.Type}}.TransactOpts)
0 commit comments