From 4da92c5d755fc7756222803271164c7e2c7d588a Mon Sep 17 00:00:00 2001 From: Gary Yu Date: Sat, 18 Aug 2018 20:23:31 +0800 Subject: [PATCH] minor fix: prefix code conflict between 'COMMITMENT_PREFIX' and 'CONFIRMED_HEIGHT_PREFIX' (#1375) --- wallet/src/lmdb_wallet.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wallet/src/lmdb_wallet.rs b/wallet/src/lmdb_wallet.rs index 23e932a3..94c6eecc 100644 --- a/wallet/src/lmdb_wallet.rs +++ b/wallet/src/lmdb_wallet.rs @@ -29,7 +29,7 @@ use util::secp::pedersen; pub const DB_DIR: &'static str = "wallet_data"; -const COMMITMENT_PREFIX: u8 = 'c' as u8; +const COMMITMENT_PREFIX: u8 = 'C' as u8; const OUTPUT_PREFIX: u8 = 'o' as u8; const DERIV_PREFIX: u8 = 'd' as u8; const CONFIRMED_HEIGHT_PREFIX: u8 = 'c' as u8;