Documentation ¶
Index ¶
- func CreateTransactionIndex(counter uint64) []byte
- func GetLastWrittenBlock(db *fdb.Database) (uint32, error)
- func GetLastWrittenTransactionAndBlock(db *fdb.Database) (uint32, uint32, error)
- func GetMaxTransactionCounter(db *fdb.Database) (uint64, error)
- func ReadTransact(tx func(tr fdb.ReadTransaction) (interface{}, error)) (interface{}, error)
- func Reinit(numProc int)
- func Transact(tx func(tr fdb.Transaction) (interface{}, error)) (interface{}, error)
- type BlockAssembler
- type BlockWriter
- type DepositLookupResult
- type FDBWorker
- type FDBWorkerPool
- type FundingTXcreator
- type SpendingLookupResult
- type TestUTXOcreator
- type UTXOReader
- type UTXOWriter
- type UTXOinserter
- type UTXOlister
- func (r *UTXOlister) GetExactUTXOsForAddress(address common.Address, blockNumber uint32, transactionNumber uint32, ...) ([][transaction.UTXOIndexLength]byte, error)
- func (r *UTXOlister) GetUTXOsForAddress(address common.Address, afterBlock uint32, afterTransaction uint32, ...) ([][transaction.UTXOIndexLength]byte, error)
- type WithdrawTXMarker
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateTransactionIndex ¶
func ReadTransact ¶
func ReadTransact(tx func(tr fdb.ReadTransaction) (interface{}, error)) (interface{}, error)
Types ¶
type BlockAssembler ¶
type BlockAssembler struct {
// contains filtered or unexported fields
}
func NewBlockAssembler ¶
func NewBlockAssembler(db *fdb.Database, redisClient *redis.Client) *BlockAssembler
func (*BlockAssembler) AssembleBlock ¶
type BlockWriter ¶
type BlockWriter struct {
// contains filtered or unexported fields
}
func NewBlockWriter ¶
func NewBlockWriter(db *fdb.Database) *BlockWriter
func (*BlockWriter) WriteBlock ¶
func (r *BlockWriter) WriteBlock(block block.Block) error
type DepositLookupResult ¶
func LookupDepositIndex ¶
type FDBWorker ¶
type FDBWorker struct {
// contains filtered or unexported fields
}
func NewFDBWorker ¶
func NewFDBWorker() *FDBWorker
type FDBWorkerPool ¶
type FDBWorkerPool struct { Concurrency int // contains filtered or unexported fields }
var WorkerPool FDBWorkerPool
type FundingTXcreator ¶
type FundingTXcreator struct {
// contains filtered or unexported fields
}
func NewFundingTXcreator ¶
func NewFundingTXcreator(db *fdb.Database, signingKey []byte) *FundingTXcreator
type SpendingLookupResult ¶
func LookupSpendingIndex ¶
type TestUTXOcreator ¶
type TestUTXOcreator struct {
// contains filtered or unexported fields
}
func NewTestUTXOcreator ¶
func NewTestUTXOcreator(db *fdb.Database) *TestUTXOcreator
type UTXOReader ¶
type UTXOReader struct {
// contains filtered or unexported fields
}
func NewUTXOReader ¶
func NewUTXOReader(db *fdb.Database) *UTXOReader
func (*UTXOReader) CheckIfUTXOsExist ¶
func (r *UTXOReader) CheckIfUTXOsExist(tx *transaction.SignedTransaction) error
type UTXOWriter ¶
type UTXOWriter struct { Concurrency int // contains filtered or unexported fields }
func NewUTXOWriter ¶
func NewUTXOWriter(db *fdb.Database, concurrency int) *UTXOWriter
func (*UTXOWriter) WriteSpending ¶
func (r *UTXOWriter) WriteSpending(res *transaction.ParsedTransactionResult, counter uint64) error
type UTXOinserter ¶
type UTXOinserter struct {
// contains filtered or unexported fields
}
func NewUTXOinserter ¶
func NewUTXOinserter(db *fdb.Database) *UTXOinserter
func (*UTXOinserter) InsertUTXO ¶
func (r *UTXOinserter) InsertUTXO(tx *transaction.SignedTransaction, blockNumber uint32, transactionNumber uint32) error
type UTXOlister ¶
type UTXOlister struct {
// contains filtered or unexported fields
}
func NewUTXOlister ¶
func NewUTXOlister(db *fdb.Database) *UTXOlister
func (*UTXOlister) GetExactUTXOsForAddress ¶
func (r *UTXOlister) GetExactUTXOsForAddress(address common.Address, blockNumber uint32, transactionNumber uint32, outputNumber uint8, limit int, showWithdrawn bool) ([][transaction.UTXOIndexLength]byte, error)
func (*UTXOlister) GetUTXOsForAddress ¶
func (r *UTXOlister) GetUTXOsForAddress(address common.Address, afterBlock uint32, afterTransaction uint32, afterOutput uint8, limit int, showWithdrawn bool) ([][transaction.UTXOIndexLength]byte, error)
type WithdrawTXMarker ¶
type WithdrawTXMarker struct {
// contains filtered or unexported fields
}
func NewWithdrawTXMarker ¶
func NewWithdrawTXMarker(db *fdb.Database) *WithdrawTXMarker
Click to show internal directories.
Click to hide internal directories.