mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix CI
This commit is contained in:
parent
00166adb2a
commit
77bff24fdf
2 changed files with 2 additions and 3 deletions
|
|
@ -1129,6 +1129,7 @@ func TestJavaBindings(t *testing.T) {
|
||||||
package bindtest;
|
package bindtest;
|
||||||
|
|
||||||
import org.ethereum.geth.*;
|
import org.ethereum.geth.*;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
|
|
|
||||||
|
|
@ -468,7 +468,6 @@ import java.util.*;
|
||||||
public class {{.Type}} {
|
public class {{.Type}} {
|
||||||
// ABI is the input ABI used to generate the binding from.
|
// ABI is the input ABI used to generate the binding from.
|
||||||
public final static String ABI = "{{.InputABI}}";
|
public final static String ABI = "{{.InputABI}}";
|
||||||
|
|
||||||
{{if $contract.FuncSigs}}
|
{{if $contract.FuncSigs}}
|
||||||
// {{.Type}}FuncSigs maps the 4-byte function signature to its string representation.
|
// {{.Type}}FuncSigs maps the 4-byte function signature to its string representation.
|
||||||
public final static Map<String, String> {{.Type}}FuncSigs;
|
public final static Map<String, String> {{.Type}}FuncSigs;
|
||||||
|
|
@ -480,7 +479,6 @@ public class {{.Type}} {
|
||||||
{{.Type}}FuncSigs = Collections.unmodifiableMap(temp);
|
{{.Type}}FuncSigs = Collections.unmodifiableMap(temp);
|
||||||
}
|
}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
{{if .InputBin}}
|
{{if .InputBin}}
|
||||||
// BYTECODE is the compiled bytecode used for deploying new contracts.
|
// BYTECODE is the compiled bytecode used for deploying new contracts.
|
||||||
public final static String BYTECODE = "0x{{.InputBin}}";
|
public final static String BYTECODE = "0x{{.InputBin}}";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue