mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-02-01 08:51:09 +03:00
Fix incorrect merge in previous PR (#267)
This commit is contained in:
parent
39db21d549
commit
43a7bfecef
1 changed files with 2 additions and 2 deletions
|
@ -187,8 +187,8 @@ pub struct Slate {
|
||||||
/// TTL, the block height at which wallets
|
/// TTL, the block height at which wallets
|
||||||
/// should refuse to process the transaction and unlock all
|
/// should refuse to process the transaction and unlock all
|
||||||
/// associated outputs
|
/// associated outputs
|
||||||
#[serde(with = "secp_ser::string_or_u64")]
|
#[serde(with = "secp_ser::opt_string_or_u64")]
|
||||||
pub ttl_cutoff_height: u64,
|
pub ttl_cutoff_height: Option<u64>,
|
||||||
/// Participant data, each participant in the transaction will
|
/// Participant data, each participant in the transaction will
|
||||||
/// insert their public data here. For now, 0 is sender and 1
|
/// insert their public data here. For now, 0 is sender and 1
|
||||||
/// is receiver, though this will change for multi-party
|
/// is receiver, though this will change for multi-party
|
||||||
|
|
Loading…
Reference in a new issue