This commit is contained in:
Guillaume Ballet 2019-06-28 14:10:53 +02:00
parent 00166adb2a
commit 77bff24fdf
2 changed files with 2 additions and 3 deletions

File diff suppressed because one or more lines are too long

View file

@ -468,7 +468,6 @@ import java.util.*;
public class {{.Type}} {
// ABI is the input ABI used to generate the binding from.
public final static String ABI = "{{.InputABI}}";
{{if $contract.FuncSigs}}
// {{.Type}}FuncSigs maps the 4-byte function signature to its string representation.
public final static Map<String, String> {{.Type}}FuncSigs;
@ -480,7 +479,6 @@ public class {{.Type}} {
{{.Type}}FuncSigs = Collections.unmodifiableMap(temp);
}
{{end}}
{{if .InputBin}}
// BYTECODE is the compiled bytecode used for deploying new contracts.
public final static String BYTECODE = "0x{{.InputBin}}";