Fixing serde overflow error (#1977)

This commit is contained in:
Tomasz Drwięga 2016-08-23 10:10:12 +02:00 committed by Arkadiy Paronyan
parent 81ac3a1936
commit 6cb439fbc8

View File

@ -99,6 +99,7 @@ pub struct VMOperation {
/// Information concerning the execution of the operation. /// Information concerning the execution of the operation.
pub ex: Option<VMExecutedOperation>, pub ex: Option<VMExecutedOperation>,
/// Subordinate trace of the CALL/CREATE if applicable. /// Subordinate trace of the CALL/CREATE if applicable.
#[serde(bound="VMTrace: Serialize")]
pub sub: Option<VMTrace>, pub sub: Option<VMTrace>,
} }