Files
Zach Kelling 1c265396e1 fix: update dependencies and fix type errors
- Fix ids.ToShortID multi-value error in mldsafx
- Add runtime v1.0.1 dependency
- Update transferables for consensus compatibility
2026-01-26 09:10:39 -08:00

12 lines
276 B
Go

// Copyright (C) 2019-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package utxo
import "context"
// ContextInitializable can be initialized with a context
type ContextInitializable interface {
InitRuntime(context.Context)
}