2013-08-03 17:20:05 +02:00
|
|
|
// Copyright (c) 2013 Conformal Systems LLC.
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ldb
|
|
|
|
|
|
|
|
import (
|
2013-09-30 23:44:26 +02:00
|
|
|
//"fmt"
|
2013-08-03 17:20:05 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// InvalidateTxCache clear/release all cached transactions.
|
|
|
|
func (db *LevelDb) InvalidateTxCache() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// InvalidateTxCache clear/release all cached blocks.
|
|
|
|
func (db *LevelDb) InvalidateBlockCache() {
|
|
|
|
}
|
|
|
|
|
|
|
|
// InvalidateCache clear/release all cached blocks and transactions.
|
|
|
|
func (db *LevelDb) InvalidateCache() {
|
|
|
|
}
|