dione/consensus/policy/policy.go

8 lines
181 B
Go
Raw Normal View History

2021-05-14 20:32:39 +00:00
package policy
const (
2021-06-02 19:45:55 +00:00
BlockMaxTransactionCount = 100
MaxBlockCountForRetrieving = 500 // we do it just like in Bitcoin
MaxTransactionCountForRetrieving = 50000
2021-05-14 20:32:39 +00:00
)