aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2022-02-23 09:05:57 +0100
committerMarcoFalke <falke.marco@gmail.com>2022-02-23 09:06:00 +0100
commitf062abe5293b94ee4816491fe6caab23dbff41ba (patch)
tree04626db8f9d93065555c3fd1821d98d22451ef92 /test
parentc44e734dca64a15fae92255a5d848c04adaad2fa (diff)
parent5b8f2484baad451b5c24725bf3387c79213b0695 (diff)
downloadbitcoin-f062abe5293b94ee4816491fe6caab23dbff41ba.tar.xz
Merge bitcoin/bitcoin#24419: lint: remove no-longer used exceptions from lint-format-strings.py
5b8f2484baad451b5c24725bf3387c79213b0695 lint: remove no-longer used exceptions from lint-format-strings.py (fanquake) Pull request description: ACKs for top commit: laanwj: ACK 5b8f2484baad451b5c24725bf3387c79213b0695 if it passes CI hebasto: ACK 5b8f2484baad451b5c24725bf3387c79213b0695, I've verified that all of the remained false positive cases are valid. Tree-SHA512: 25c40714d271c57fb09c963a3372b62c7b4f2e9367517cdf5c73ea82527a9c4c477f8b7857e37adc7eb9feea1f0a37435059798ddf2195dee3522bed3a6eea44
Diffstat (limited to 'test')
-rwxr-xr-xtest/lint/lint-format-strings.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/lint/lint-format-strings.py b/test/lint/lint-format-strings.py
index 2870432bff..47f40e2746 100755
--- a/test/lint/lint-format-strings.py
+++ b/test/lint/lint-format-strings.py
@@ -22,8 +22,6 @@ FALSE_POSITIVES = [
("src/wallet/wallet.h", "LogPrintf((\"%s \" + fmt).c_str(), GetDisplayName(), parameters...)"),
("src/wallet/scriptpubkeyman.h", "WalletLogPrintf(std::string fmt, Params... parameters)"),
("src/wallet/scriptpubkeyman.h", "LogPrintf((\"%s \" + fmt).c_str(), m_storage.GetDisplayName(), parameters...)"),
- ("src/logging.h", "LogPrintf(const char* fmt, const Args&... args)"),
- ("src/wallet/scriptpubkeyman.h", "WalletLogPrintf(const std::string& fmt, const Params&... parameters)"),
]