Skip to content

Commit

Permalink
Re-gen bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
mdehoog committed Jan 11, 2025
1 parent 13ef076 commit 2a84b47
Show file tree
Hide file tree
Showing 6 changed files with 400 additions and 46 deletions.
196 changes: 170 additions & 26 deletions bindings/cert_manager.go

Large diffs are not rendered by default.

237 changes: 221 additions & 16 deletions bindings/deploy_chain.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/output_oracle.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/portal.go

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bindings/system_config_global.go

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion register-signer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,12 @@ func main() {
panic(err)
}
if len(verified) == 0 {
tx, err := certManager.VerifyCert(auth, cert, ca, parentCertHash)
var tx *types.Transaction
if ca {
tx, err = certManager.VerifyCACert(auth, cert, parentCertHash)
} else {
tx, err = certManager.VerifyClientCert(auth, cert, parentCertHash)
}
if err != nil {
panic(err)
}
Expand Down

0 comments on commit 2a84b47

Please sign in to comment.