diff --git a/core/src/libtx/slate.rs b/core/src/libtx/slate.rs index f03225e06..32ee3cf28 100644 --- a/core/src/libtx/slate.rs +++ b/core/src/libtx/slate.rs @@ -31,6 +31,8 @@ use rand::thread_rng; use std::sync::Arc; use uuid::Uuid; +const CURRENT_SLATE_VERSION: u64 = 1; + /// Public data for each participant in the slate #[derive(Serialize, Deserialize, Debug, Clone)] @@ -108,7 +110,7 @@ impl Slate { height: 0, lock_height: 0, participant_data: vec![], - version: Some(1), + version: Some(CURRENT_SLATE_VERSION), } }