Skip to content
This repository has been archived by the owner on Feb 14, 2021. It is now read-only.

Commit

Permalink
redundant braces fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lexfrl committed Aug 9, 2018
1 parent 49b0c0d commit a7a44d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/builder.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::collections::HashMap;
use std::rc::Rc;
use std::cell::{RefCell};
use std::cell::RefCell;

use pwasm_std::hash::{H256, Address};
use bigint::U256;
Expand Down
2 changes: 1 addition & 1 deletion src/external.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use std::any::Any;
use std::collections::HashMap;
use std::rc::Rc;
use std::ops::DerefMut;
use std::cell::{RefCell};
use std::cell::RefCell;

use pwasm_std::hash::{H256, Address};
use bigint::U256;
Expand Down

0 comments on commit a7a44d0

Please sign in to comment.