Skip to content

Commit 15ee861

Browse files
committed
Formatting fixes
1 parent abb11dd commit 15ee861

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/signer.cpp

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -249,15 +249,9 @@ namespace sdk {
249249
return m_hw_device["supports_low_r"];
250250
}
251251

252-
bool hardware_signer::supports_arbitrary_scripts() const
253-
{
254-
return m_hw_device["supports_arbitrary_scripts"];
255-
}
252+
bool hardware_signer::supports_arbitrary_scripts() const { return m_hw_device["supports_arbitrary_scripts"]; }
256253

257-
liquid_support_level hardware_signer::get_liquid_support() const
258-
{
259-
return m_hw_device["supports_liquid"];
260-
}
254+
liquid_support_level hardware_signer::get_liquid_support() const { return m_hw_device["supports_liquid"]; }
261255

262256
ae_protocol_support_level hardware_signer::get_ae_protocol_support() const
263257
{

src/signer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ namespace sdk {
2121
enum class ae_protocol_support_level : uint32_t {
2222
none = 0, // AE signing protocol is not supported, only vanilla EC sigs
2323
optional = 1, // Both AE and vanilla EC sigs are supported
24-
mandatory=2 // AE protocol mandatory, vanilla EC sigs not supported
24+
mandatory = 2 // AE protocol mandatory, vanilla EC sigs not supported
2525
};
2626

2727
//

0 commit comments

Comments
 (0)