Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Go potential bugs and maintainability #1496

Merged
merged 7 commits into from
May 30, 2024
Prev Previous commit
Next Next commit
Add method comment for export IssuanceChainStorage struct
roger2hk committed May 29, 2024
commit fd2ecd6c3d7a5f6ecac3b6b733e6eadcba56d98d
1 change: 1 addition & 0 deletions trillian/ctfe/storage/mysql/mysql.go
Original file line number Diff line number Diff line change
@@ -32,6 +32,7 @@ const (
insertIssuanceChainSQL = "INSERT INTO IssuanceChain(IdentityHash, ChainValue) VALUES (?, ?)"
)

// IssuanceChainStorage is a MySQL implementation of the IssuanceChainStorage interface.
type IssuanceChainStorage struct {
db *sql.DB
}