Rising the limit for fetch (#3964)

This commit is contained in:
Tomasz Drwięga 2016-12-23 17:23:31 +01:00 committed by Gav Wood
parent e7ca4445e2
commit 6251289b85

View File

@ -78,8 +78,8 @@ pub struct Client {
impl Client {
pub fn new() -> Result<Self, Error> {
// Max 15MB will be downloaded.
Self::with_limit(Some(15*1024*1024))
// Max 50MB will be downloaded.
Self::with_limit(Some(50*1024*1024))
}
fn with_limit(limit: Option<usize>) -> Result<Self, Error> {