2014-07-08 08:41:39 +02:00
|
|
|
// Copyright (c) 2014 Conformal Systems LLC.
|
|
|
|
// Use of this source code is governed by an ISC
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package btcchain_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2015-01-08 12:08:11 +01:00
|
|
|
"math/big"
|
|
|
|
|
2015-01-17 01:40:47 +01:00
|
|
|
"github.com/btcsuite/btcchain"
|
2015-01-17 01:29:19 +01:00
|
|
|
"github.com/btcsuite/btcdb"
|
|
|
|
_ "github.com/btcsuite/btcdb/memdb"
|
2015-01-17 00:28:19 +01:00
|
|
|
"github.com/btcsuite/btcnet"
|
2015-01-15 17:23:47 +01:00
|
|
|
"github.com/btcsuite/btcutil"
|
2014-07-08 08:41:39 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// This example demonstrates how to create a new chain instance and use
|
|
|
|
// ProcessBlock to attempt to attempt add a block to the chain. As the package
|
|
|
|
// overview documentation describes, this includes all of the Bitcoin consensus
|
|
|
|
// rules. This example intentionally attempts to insert a duplicate genesis
|
|
|
|
// block to illustrate how an invalid block is handled.
|
2014-07-08 08:49:48 +02:00
|
|
|
func ExampleBlockChain_ProcessBlock() {
|
2014-07-08 08:41:39 +02:00
|
|
|
// Create a new database to store the accepted blocks into. Typically
|
|
|
|
// this would be opening an existing database and would not use memdb
|
|
|
|
// which is a memory-only database backend, but we create a new db
|
|
|
|
// here so this is a complete working example.
|
|
|
|
db, err := btcdb.CreateDB("memdb")
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Failed to create database: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer db.Close()
|
|
|
|
|
|
|
|
// Insert the main network genesis block. This is part of the initial
|
|
|
|
// database setup. Like above, this typically would not be needed when
|
|
|
|
// opening an existing database.
|
|
|
|
genesisBlock := btcutil.NewBlock(btcnet.MainNetParams.GenesisBlock)
|
|
|
|
_, err = db.InsertBlock(genesisBlock)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Failed to insert genesis block: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new BlockChain instance using the underlying database for
|
|
|
|
// the main bitcoin network and ignore notifications.
|
|
|
|
chain := btcchain.New(db, &btcnet.MainNetParams, nil)
|
|
|
|
|
2014-10-03 22:29:25 +02:00
|
|
|
// Create a new median time source that is required by the upcoming
|
|
|
|
// call to ProcessBlock. Ordinarily this would also add time values
|
|
|
|
// obtained from other peers on the network so the local time is
|
|
|
|
// adjusted to be in agreement with other peers.
|
|
|
|
timeSource := btcchain.NewMedianTime()
|
|
|
|
|
2014-07-08 08:41:39 +02:00
|
|
|
// Process a block. For this example, we are going to intentionally
|
|
|
|
// cause an error by trying to process the genesis block which already
|
|
|
|
// exists.
|
2014-10-03 22:29:25 +02:00
|
|
|
isOrphan, err := chain.ProcessBlock(genesisBlock, timeSource, btcchain.BFNone)
|
2014-07-08 08:41:39 +02:00
|
|
|
if err != nil {
|
|
|
|
fmt.Printf("Failed to process block: %v\n", err)
|
|
|
|
return
|
|
|
|
}
|
2014-08-28 16:23:46 +02:00
|
|
|
fmt.Printf("Block accepted. Is it an orphan?: %v", isOrphan)
|
2014-07-08 08:41:39 +02:00
|
|
|
|
|
|
|
// Output:
|
|
|
|
// Failed to process block: already have block 000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f
|
|
|
|
}
|
2014-07-08 09:15:41 +02:00
|
|
|
|
2014-07-08 14:57:22 +02:00
|
|
|
// This example demonstrates how to convert the compact "bits" in a block header
|
|
|
|
// which represent the target difficulty to a big integer and display it using
|
|
|
|
// the typical hex notation.
|
2014-07-08 09:15:41 +02:00
|
|
|
func ExampleCompactToBig() {
|
|
|
|
// Convert the bits from block 300000 in the main block chain.
|
|
|
|
bits := uint32(419465580)
|
|
|
|
targetDifficulty := btcchain.CompactToBig(bits)
|
|
|
|
|
|
|
|
// Display it in hex.
|
|
|
|
fmt.Printf("%064x\n", targetDifficulty.Bytes())
|
|
|
|
|
|
|
|
// Output:
|
|
|
|
// 0000000000000000896c00000000000000000000000000000000000000000000
|
|
|
|
}
|
2014-07-08 14:57:22 +02:00
|
|
|
|
|
|
|
// This example demonstrates how to convert a target difficulty into the compact
|
|
|
|
// "bits" in a block header which represent that target difficulty .
|
|
|
|
func ExampleBigToCompact() {
|
|
|
|
// Convert the target difficulty from block 300000 in the main block
|
|
|
|
// chain to compact form.
|
|
|
|
t := "0000000000000000896c00000000000000000000000000000000000000000000"
|
|
|
|
targetDifficulty, success := new(big.Int).SetString(t, 16)
|
|
|
|
if !success {
|
|
|
|
fmt.Println("invalid target difficulty")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
bits := btcchain.BigToCompact(targetDifficulty)
|
|
|
|
|
|
|
|
fmt.Println(bits)
|
|
|
|
|
|
|
|
// Output:
|
|
|
|
// 419465580
|
|
|
|
}
|