aboutsummaryrefslogtreecommitdiff
path: root/src/rpc
diff options
context:
space:
mode:
authorAndrew Chow <github@achow101.com>2023-08-09 07:36:08 -0400
committerAndrew Chow <github@achow101.com>2023-08-14 17:39:49 -0400
commit91d924ede1b421df31c895f4f43359e453a09ca5 (patch)
tree823f62a894ec3839da6491cbcd0a2cacf9b02522 /src/rpc
parentbacdb2e208531124e85ed2d4ea2a4b508fbb5088 (diff)
Rename script/standard.{cpp/h} to script/solver.{cpp/h}
Since script/standard only contains things that are used by the Solver and its callers, rename the files to script/solver.
Diffstat (limited to 'src/rpc')
-rw-r--r--src/rpc/rawtransaction.cpp2
-rw-r--r--src/rpc/util.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp
index eb0200ccf5..9198529378 100644
--- a/src/rpc/rawtransaction.cpp
+++ b/src/rpc/rawtransaction.cpp
@@ -30,7 +30,7 @@
#include <script/script.h>
#include <script/sign.h>
#include <script/signingprovider.h>
-#include <script/standard.h>
+#include <script/solver.h>
#include <uint256.h>
#include <undo.h>
#include <util/bip32.h>
diff --git a/src/rpc/util.cpp b/src/rpc/util.cpp
index 4c1aa9ee03..2732f1297a 100644
--- a/src/rpc/util.cpp
+++ b/src/rpc/util.cpp
@@ -12,7 +12,7 @@
#include <rpc/util.h>
#include <script/descriptor.h>
#include <script/signingprovider.h>
-#include <script/standard.h>
+#include <script/solver.h>
#include <tinyformat.h>
#include <util/check.h>
#include <util/result.h>