aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLeif Jurvetson <leijurv@gmail.com>2016-03-16 02:55:39 +0800
committerLeif Jurvetson <leijurv@gmail.com>2016-03-16 03:03:17 +0800
commit434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa (patch)
tree479aa140da9612da93b838d6e665bab928836066 /core
parent06fe6310a3ecf0be324b082ca83c015abe47fa8f (diff)
downloadgo-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar.gz
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar.bz2
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar.lz
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar.xz
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.tar.zst
go-tangerine-434e4b31d8ad2fb34b9b9a74d05cae3cd4169daa.zip
core, eth: replace reorganiz with reorganis
Diffstat (limited to 'core')
-rw-r--r--core/blockchain.go2
-rw-r--r--core/blockchain_test.go8
-rw-r--r--core/tx_pool_test.go2
3 files changed, 6 insertions, 6 deletions
diff --git a/core/blockchain.go b/core/blockchain.go
index 284c549e3..55034d9de 100644
--- a/core/blockchain.go
+++ b/core/blockchain.go
@@ -775,7 +775,7 @@ func (self *BlockChain) WriteBlock(block *types.Block) (status WriteStatus, err
// Second clause in the if statement reduces the vulnerability to selfish mining.
// Please refer to http://www.cs.cornell.edu/~ie53/publications/btcProcFC.pdf
if externTd.Cmp(localTd) > 0 || (externTd.Cmp(localTd) == 0 && mrand.Float64() < 0.5) {
- // Reorganize the chain if the parent is not the head block
+ // Reorganise the chain if the parent is not the head block
if block.ParentHash() != self.currentBlock.Hash() {
if err := self.reorg(self.currentBlock, block); err != nil {
return NonStatTy, err
diff --git a/core/blockchain_test.go b/core/blockchain_test.go
index aafd7cafe..df979578e 100644
--- a/core/blockchain_test.go
+++ b/core/blockchain_test.go
@@ -168,7 +168,7 @@ func testHeaderChainImport(chain []*types.Header, blockchain *BlockChain) error
if err := blockchain.Validator().ValidateHeader(header, blockchain.GetHeader(header.ParentHash), false); err != nil {
return err
}
- // Manually insert the header into the database, but don't reorganize (allows subsequent testing)
+ // Manually insert the header into the database, but don't reorganise (allows subsequent testing)
blockchain.mu.Lock()
WriteTd(blockchain.chainDb, header.Hash(), new(big.Int).Add(header.Difficulty, blockchain.GetTd(header.ParentHash)))
WriteHeader(blockchain.chainDb, header)
@@ -491,7 +491,7 @@ func chm(genesis *types.Block, db ethdb.Database) *BlockChain {
return bc
}
-// Tests that reorganizing a long difficult chain after a short easy one
+// Tests that reorganising a long difficult chain after a short easy one
// overwrites the canonical numbers and links in the database.
func TestReorgLongHeaders(t *testing.T) { testReorgLong(t, false) }
func TestReorgLongBlocks(t *testing.T) { testReorgLong(t, true) }
@@ -500,7 +500,7 @@ func testReorgLong(t *testing.T, full bool) {
testReorg(t, []int{1, 2, 4}, []int{1, 2, 3, 4}, 10, full)
}
-// Tests that reorganizing a short difficult chain after a long easy one
+// Tests that reorganising a short difficult chain after a long easy one
// overwrites the canonical numbers and links in the database.
func TestReorgShortHeaders(t *testing.T) { testReorgShort(t, false) }
func TestReorgShortBlocks(t *testing.T) { testReorgShort(t, true) }
@@ -858,7 +858,7 @@ func TestLightVsFastVsFullChainHeads(t *testing.T) {
assert(t, "light", light, height/2, 0, 0)
}
-// Tests that chain reorganizations handle transaction removals and reinsertions.
+// Tests that chain reorganisations handle transaction removals and reinsertions.
func TestChainTxReorgs(t *testing.T) {
params.MinGasLimit = big.NewInt(125000) // Minimum the gas limit may ever be.
params.GenesisGasLimit = big.NewInt(3141592) // Gas limit of the Genesis block.
diff --git a/core/tx_pool_test.go b/core/tx_pool_test.go
index bd576fb1a..fa1a740dc 100644
--- a/core/tx_pool_test.go
+++ b/core/tx_pool_test.go
@@ -366,7 +366,7 @@ func TestTransactionPostponing(t *testing.T) {
if len(pool.queue[account]) != 0 {
t.Errorf("queued transaction mismatch: have %d, want %d", len(pool.queue), 0)
}
- // Reduce the balance of the account, and check that transactions are reorganized
+ // Reduce the balance of the account, and check that transactions are reorganised
state.AddBalance(account, big.NewInt(-750))
pool.resetState()