Fixing serde overflow error (#1977) (#2030)

This commit is contained in:
Marek Kotewicz 2016-09-01 12:23:05 +02:00 committed by Arkadiy Paronyan
parent b199fbb6c6
commit e60c5b59a6

View File

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