Skip to content

Commit bb55a12

Browse files
authored
always default to RPC submission if rpc url is provided (#2043)
1 parent 5b8127c commit bb55a12

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/app/(sidebar)/transaction/submit

src/app/(sidebar)/transaction/submit/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ export default function SubmitTransaction() {
187187
if (localStorageMethod) {
188188
setSubmitMethod(localStorageMethod);
189189
} else {
190-
setSubmitMethod(isSoroban && isRpcAvailable ? "rpc" : "horizon");
190+
setSubmitMethod(isRpcAvailable ? "rpc" : "horizon");
191191
}
192192

193193
resetSubmitState();

0 commit comments

Comments
 (0)