Skip to content

Commit

Permalink
Fix the substate test build. (#128)
Browse files Browse the repository at this point in the history
  • Loading branch information
afck authored and vkomenda committed Apr 23, 2019
1 parent e1743ae commit fb14bdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethcore/src/state/substate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ mod tests {

sub_state.accrue(sub_state_2);
assert_eq!(sub_state.contracts_created.len(), 2);
assert_eq!(sub_state.sstore_clears_refund, (15000 * 12).into());
assert_eq!(sub_state.sstore_clears_refund, i128::from(15000 * 12));
assert_eq!(sub_state.suicides.len(), 1);
}
}

0 comments on commit fb14bdd

Please sign in to comment.