Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
change MaxTxSize and MaxBlockSzie to 1048576 bytes (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
icodezjb authored and gguoss committed Nov 30, 2017
1 parent a04284a commit 0eb1d10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions consensus/general.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
//consensus variables
const (
// define the Max transaction size and Max block size
MaxTxSize = uint64(1024)
MaxBlockSzie = uint64(16384)
MaxTxSize = uint64(1048576)
MaxBlockSzie = uint64(1048576)

//config parameter for coinbase reward
CoinbasePendingBlockNumber = uint64(6)
Expand Down

0 comments on commit 0eb1d10

Please sign in to comment.