mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-23 07:16:47 +00:00
14 lines
381 B
Go
14 lines
381 B
Go
package testapi
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/txscript"
|
|
)
|
|
|
|
// TestTransactionValidator adds to the main TransactionValidator methods required by tests
|
|
type TestTransactionValidator interface {
|
|
model.TransactionValidator
|
|
SigCache() *txscript.SigCache
|
|
SetSigCache(sigCache *txscript.SigCache)
|
|
}
|