diff --git a/core/src/libtx/slate.rs b/core/src/libtx/slate.rs index c1ab36c60..ca10f40db 100644 --- a/core/src/libtx/slate.rs +++ b/core/src/libtx/slate.rs @@ -92,6 +92,8 @@ pub struct Slate { /// insert their public data here. For now, 0 is sender and 1 /// is receiver, though this will change for multi-party pub participant_data: Vec, + /// Slate format version + pub version: Option, } impl Slate { @@ -106,6 +108,7 @@ impl Slate { height: 0, lock_height: 0, participant_data: vec![], + version:Some(1) } }