Documentation
¶
Index ¶
- func Address2PubHash(address []byte) []byte
- func PubkeyHash(publicKey []byte) []byte
- func RemoveCandidateBlockFile() error
- func SimplePaymentValidation(txid, mtroothash []byte, route []int, hashroute [][]byte) bool
- func ToHexInt(num int64) []byte
- type Block
- type BlockChain
- func (chain *BlockChain) AddBlock(transactions []*Transaction, height uint32)
- func (chain *BlockChain) BackOgPrevHash() []byte
- func (chain *BlockChain) FindSpendableOutputs(address []byte, amount int) (int, map[string]int)
- func (bc *BlockChain) FindTransaction(txID []byte) (Transaction, error)
- func (chain *BlockChain) FindUTXO(address []byte) []UTXO
- func (chain *BlockChain) FindUnspentTransactions(address []byte) []Transaction
- func (chain *BlockChain) GetCurrentBlock() *Block
- func (chain *BlockChain) Iterator() *BlockChainIterator
- func (chain *BlockChain) RunMine()
- func (bc *BlockChain) SignTransaction(tx *Transaction, privKey ecdsa.PrivateKey)
- func (bc *BlockChain) VerifyTransaction(tx *Transaction) bool
- type BlockChainIterator
- type CandidateBlock
- type MerkleNode
- type MerkleTree
- type ProofOfWork
- type Transaction
- func (tx *Transaction) IsCoinbase() bool
- func (tx *Transaction) PlainCopy() Transaction
- func (tx *Transaction) PlainHash(inidx int, prevPubKeyHash []byte) []byte
- func (tx *Transaction) SetID()
- func (tx *Transaction) Sign(privKey ecdsa.PrivateKey, prevTXs map[string]Transaction)
- func (tx *Transaction) TxHash() []byte
- func (tx *Transaction) Verify(prevTXs map[string]Transaction) bool
- type TxInput
- type TxOutput
- type UTXO
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func Address2PubHash ¶
func PubkeyHash ¶
func RemoveCandidateBlockFile ¶
func RemoveCandidateBlockFile() error
func SimplePaymentValidation ¶
Types ¶
type Block ¶
type Block struct { Timestamp int64 Height uint32 Hash []byte Transactions []*Transaction PrevHash []byte Nonce int64 MTree *MerkleTree }
func CreateBlock ¶
func CreateBlock(txs []*Transaction, prevHash []byte, height uint32) *Block
func Deserialize ¶
func Genesis ¶
func Genesis(coinbase *Transaction) *Block
func (*Block) HashTransactions ¶
type BlockChain ¶
func ContinueBlockChain ¶
func ContinueBlockChain() *BlockChain
func InitBlockChain ¶
func InitBlockChain(address []byte) *BlockChain
func (*BlockChain) AddBlock ¶
func (chain *BlockChain) AddBlock(transactions []*Transaction, height uint32)
func (*BlockChain) BackOgPrevHash ¶
func (chain *BlockChain) BackOgPrevHash() []byte
func (*BlockChain) FindSpendableOutputs ¶
func (*BlockChain) FindTransaction ¶
func (bc *BlockChain) FindTransaction(txID []byte) (Transaction, error)
func (*BlockChain) FindUTXO ¶
func (chain *BlockChain) FindUTXO(address []byte) []UTXO
func (*BlockChain) FindUnspentTransactions ¶
func (chain *BlockChain) FindUnspentTransactions(address []byte) []Transaction
func (*BlockChain) GetCurrentBlock ¶
func (chain *BlockChain) GetCurrentBlock() *Block
func (*BlockChain) Iterator ¶
func (chain *BlockChain) Iterator() *BlockChainIterator
func (*BlockChain) RunMine ¶
func (chain *BlockChain) RunMine()
func (*BlockChain) SignTransaction ¶
func (bc *BlockChain) SignTransaction(tx *Transaction, privKey ecdsa.PrivateKey)
func (*BlockChain) VerifyTransaction ¶
func (bc *BlockChain) VerifyTransaction(tx *Transaction) bool
type BlockChainIterator ¶
func (*BlockChainIterator) Next ¶
func (iterator *BlockChainIterator) Next() *Block
type CandidateBlock ¶
type CandidateBlock struct {
PubTx []*Transaction
}
func CreateCandidateBlock ¶
func CreateCandidateBlock() (*CandidateBlock, error)
func (*CandidateBlock) AddTransaction ¶
func (cb *CandidateBlock) AddTransaction(transaction *Transaction)
func (*CandidateBlock) LoadFile ¶
func (cb *CandidateBlock) LoadFile() error
func (*CandidateBlock) SaveFile ¶
func (cb *CandidateBlock) SaveFile()
type MerkleNode ¶
type MerkleNode struct { LeftNode *MerkleNode RightNode *MerkleNode Data []byte // Hash }
func CreateMerkleNode ¶
func CreateMerkleNode(left, right *MerkleNode, data []byte) *MerkleNode
type MerkleTree ¶
type MerkleTree struct {
RootNode *MerkleNode
}
func CrateMerkleTree ¶
func CrateMerkleTree(txs []*Transaction) *MerkleTree
func (*MerkleTree) BackValidationRoute ¶
func (mt *MerkleTree) BackValidationRoute(txid []byte) ([]int, [][]byte)
type ProofOfWork ¶
func NewProofOfWork ¶
func NewProofOfWork(b *Block) *ProofOfWork
func (*ProofOfWork) InitNonce ¶
func (pow *ProofOfWork) InitNonce(nonce int64) []byte
func (*ProofOfWork) Run ¶
func (pow *ProofOfWork) Run() (int64, []byte)
func (*ProofOfWork) Validate ¶
func (pow *ProofOfWork) Validate() bool
type Transaction ¶
func CoinbaseTx ¶
func CoinbaseTx(toAddress, signature, publickey []byte) *Transaction
func NewTransaction ¶
func NewTransaction(from, to []byte, amount int, chain *BlockChain, privkey ecdsa.PrivateKey) *Transaction
func (*Transaction) IsCoinbase ¶
func (tx *Transaction) IsCoinbase() bool
func (*Transaction) PlainCopy ¶
func (tx *Transaction) PlainCopy() Transaction
func (*Transaction) PlainHash ¶
func (tx *Transaction) PlainHash(inidx int, prevPubKeyHash []byte) []byte
func (*Transaction) SetID ¶
func (tx *Transaction) SetID()
func (*Transaction) Sign ¶
func (tx *Transaction) Sign(privKey ecdsa.PrivateKey, prevTXs map[string]Transaction)
func (*Transaction) TxHash ¶
func (tx *Transaction) TxHash() []byte
func (*Transaction) Verify ¶
func (tx *Transaction) Verify(prevTXs map[string]Transaction) bool
type TxOutput ¶
func (*TxOutput) CanBeUnlocked ¶
Click to show internal directories.
Click to hide internal directories.