mirror of
https://github.com/luxfi/utxo.git
synced 2026-07-27 03:39:23 +00:00
- Fix ids.ToShortID multi-value error in mldsafx - Add runtime v1.0.1 dependency - Update transferables for consensus compatibility
12 lines
276 B
Go
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)
|
|
}
|