Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
icarus -> update, increase web timeout. (#4165)
Browse files Browse the repository at this point in the history
* icarus -> update, increase web timeout.

* Fix estimate gas
  • Loading branch information
gavofyork authored and arkpar committed Jan 13, 2017
1 parent 7611bbd commit c2f4716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dapps/src/handlers/fetch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use endpoint::EndpointPath;
use handlers::{ContentHandler, StreamingHandler};
use page::{LocalPageEndpoint, PageHandlerWaiting};

const FETCH_TIMEOUT: u64 = 30;
const FETCH_TIMEOUT: u64 = 300;

pub enum ValidatorResponse {
Local(LocalPageEndpoint),
Expand Down
2 changes: 1 addition & 1 deletion ethcore/src/client/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ impl BlockChainClient for Client {

Executive::new(&mut state, &env_info, &*self.engine, &self.factories.vm)
.transact(&tx, options.clone())
.map(|r| r.exception.is_some())
.map(|r| r.exception.is_none())
.unwrap_or(false)
};

Expand Down

0 comments on commit c2f4716

Please sign in to comment.