From a6b0efff875dcd87115bb88e663e44a6a3e39b79 Mon Sep 17 00:00:00 2001 From: tequ Date: Tue, 7 Oct 2025 11:19:31 +0900 Subject: [PATCH] typo --- src/xrpld/rpc/handlers/Simulate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xrpld/rpc/handlers/Simulate.cpp b/src/xrpld/rpc/handlers/Simulate.cpp index f8f3dc9f8c..35cb7587d4 100644 --- a/src/xrpld/rpc/handlers/Simulate.cpp +++ b/src/xrpld/rpc/handlers/Simulate.cpp @@ -72,7 +72,7 @@ getAutofillSequence(Json::Value const& tx_json, RPC::JsonContext& context) } static std::optional -autofillSigunature(Json::Value& sigObject) +autofillSignature(Json::Value& sigObject) { if (!sigObject.isMember(jss::SigningPubKey)) { @@ -146,7 +146,7 @@ autofillTx(Json::Value& tx_json, RPC::JsonContext& context) tx_json[jss::Fee] = feeOrError; } - if (auto error = autofillSigunature(tx_json)) + if (auto error = autofillSignature(tx_json)) return *error; if (!tx_json.isMember(jss::Sequence))