aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/block_chain.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-06-14 17:46:09 +0800
committerobscuren <geffobscura@gmail.com>2014-06-14 17:46:09 +0800
commit63883bf27d8b87f601e1603e9024a279b91bffb7 (patch)
treebe430bdebb7c73f761e9cded3f3600820dd8763c /ethchain/block_chain.go
parent81245473486dd680b7121d4b227ca8a57d07b4b1 (diff)
downloadgo-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar.gz
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar.bz2
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar.lz
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar.xz
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.tar.zst
go-tangerine-63883bf27d8b87f601e1603e9024a279b91bffb7.zip
Moving closer to interop
Diffstat (limited to 'ethchain/block_chain.go')
-rw-r--r--ethchain/block_chain.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/ethchain/block_chain.go b/ethchain/block_chain.go
index 8cede2403..19b5248d7 100644
--- a/ethchain/block_chain.go
+++ b/ethchain/block_chain.go
@@ -55,6 +55,8 @@ func (bc *BlockChain) NewBlock(coinbase []byte) *Block {
nil,
"")
+ block.MinGasPrice = big.NewInt(10000000000000)
+
if bc.CurrentBlock != nil {
var mul *big.Int
if block.Time < lastBlockTime+42 {