2014-01-09 06:54:52 +01:00
|
|
|
// Copyright (c) 2013-2014 Conformal Systems LLC.
|
2013-08-03 17:20:05 +02:00
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ldb
|
|
|
|
|
|
|
|
import (
|
2013-11-21 16:48:57 +01: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() {
|
|
|
|
}
|