From 43a7bfecef2dc4b23e5131ab59056f9056934e39 Mon Sep 17 00:00:00 2001 From: Yeastplume Date: Mon, 2 Dec 2019 15:27:40 +0000 Subject: [PATCH] Fix incorrect merge in previous PR (#267) --- libwallet/src/slate.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libwallet/src/slate.rs b/libwallet/src/slate.rs index e9c7df11..c5a08373 100644 --- a/libwallet/src/slate.rs +++ b/libwallet/src/slate.rs @@ -187,8 +187,8 @@ pub struct Slate { /// TTL, the block height at which wallets /// should refuse to process the transaction and unlock all /// associated outputs - #[serde(with = "secp_ser::string_or_u64")] - pub ttl_cutoff_height: u64, + #[serde(with = "secp_ser::opt_string_or_u64")] + pub ttl_cutoff_height: Option, /// Participant data, each participant in the transaction will /// insert their public data here. For now, 0 is sender and 1 /// is receiver, though this will change for multi-party