Skip to content

Commit

Permalink
fix native-image build and run
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod authored and GrapeBaBa committed Aug 16, 2023
1 parent ed1abac commit af7c08e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 7 deletions.
4 changes: 4 additions & 0 deletions hildr-batcher/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,7 @@ jar {
exclude 'META-INF/*.DSA', 'META-INF/*.RSA', 'META-INF/*.SF'
}
}

nativeCompile {
enabled = false
}
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,18 @@
},
{
"name":"org.web3j.protocol.core.Response$Error",
"allDeclaredFields":true,
"queryAllDeclaredMethods":true,
"queryAllDeclaredConstructors":true
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
"queryAllPublicMethods": true,
"allDeclaredClasses": true,
"allPublicClasses": true,
"allPublicMethods": true,
"allDeclaredMethods": true,
"allDeclaredConstructors": true,
"allPublicConstructors": true,
"allDeclaredFields": true,
"allPublicFields": true
},
{
"name":"org.web3j.protocol.core.methods.request.EthFilter",
Expand Down Expand Up @@ -1547,7 +1556,7 @@
"allPublicFields": true
},
{
"name" : "io.optimism.engine.ExecutionPayload$EpochReq",
"name" : "io.optimism.engine.ExecutionPayload$PayloadAttributes$EpochReq",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
Expand All @@ -1562,7 +1571,7 @@
"allPublicFields": true
},
{
"name" : "io.optimism.engine.ExecutionPayload$PayloadAttributesReq",
"name" : "io.optimism.engine.ExecutionPayload$PayloadAttributes$PayloadAttributesReq",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
Expand All @@ -1576,6 +1585,7 @@
"allDeclaredFields": true,
"allPublicFields": true
},

{
"name" : "io.optimism.engine.ForkChoiceUpdate",
"queryAllDeclaredConstructors": true,
Expand Down Expand Up @@ -1712,7 +1722,7 @@
"allPublicFields": true
},
{
"name" : "io.optimism.engine.ExecutionPayload$PayloadAttributesReq",
"name" : "org.web3j.protocol.core.methods.response.AccessListObject",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
Expand All @@ -1727,7 +1737,22 @@
"allPublicFields": true
},
{
"name" : "org.web3j.protocol.core.methods.response.AccessListObject",
"name" : "io.optimism.utilities.derive.stages.Batch",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
"queryAllPublicMethods": true,
"allDeclaredClasses": true,
"allPublicClasses": true,
"allPublicMethods": true,
"allDeclaredMethods": true,
"allDeclaredConstructors": true,
"allPublicConstructors": true,
"allDeclaredFields": true,
"allPublicFields": true
},
{
"name" : "io.optimism.utilities.derive.stages.Frame",
"queryAllDeclaredConstructors": true,
"queryAllPublicConstructors": true,
"queryAllDeclaredMethods": true,
Expand Down

0 comments on commit af7c08e

Please sign in to comment.