Skip to content

Commit 5c31d91

Browse files
committed
latest compiler issue fixes
1 parent 9366a83 commit 5c31d91

7 files changed

Lines changed: 9 additions & 26 deletions

File tree

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:b51cafbe3f87943edcdc5bbbef263f68062239189bf4b0b103ed4ecab3b776f4
3-
size 170268
2+
oid sha256:38091cd08c03c48d2b700d9584c0add8dedf981f632dbcff0f2b814f975d1c36
3+
size 169604
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:498cc72dea4f7ee18576ece374046d44b21846971c2f19160f8778591b783a84
3-
size 403566
2+
oid sha256:b4384dbc39e60cd23385c36147b63ebc6d5049c74decee229c94546ea7260dbd
3+
size 419571

Plugins/SequencePlugin/Source/SequencePlugin/Private/EcosystemWallet/Authentication/LocalhostListener.cpp

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,20 +42,13 @@ void ULocalhostListener::WaitForResponse(TSuccessCallback<FString> OnSuccess, FF
4242
return;
4343
}
4444

45-
TWeakObjectPtr<ULocalhostListener> WeakThis(this);
46-
4745
const FHttpPath RootPath(TEXT("/api"));
4846
RouteHandle = Router->BindRoute(
4947
RootPath,
5048
EHttpServerRequestVerbs::VERB_GET,
51-
FHttpRequestHandler::CreateLambda([WeakThis](const FHttpServerRequest& Request, const FHttpResultCallback& OnComplete) -> bool
49+
FHttpRequestHandler::CreateLambda([this](const FHttpServerRequest& Request, const FHttpResultCallback& OnComplete) -> bool
5250
{
53-
if (!WeakThis.IsValid())
54-
{
55-
return false;
56-
}
57-
58-
return WeakThis->HandleAnyRequest(Request, OnComplete);
51+
return this->HandleAnyRequest(Request, OnComplete);
5952
})
6053
);
6154

Plugins/SequencePlugin/Source/SequencePlugin/Private/EcosystemWallet/Authentication/LocalhostListener.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#include "IHttpRouter.h"
77
#include "UObject/Object.h"
88
#include "Util/Async.h"
9+
#include "Subsystems/GameInstanceSubsystem.h"
910
#include "LocalhostListener.generated.h"
1011

1112
UCLASS()

Plugins/SequencePlugin/Source/SequencePlugin/Private/Relayer/SequenceRelayer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ FString USequenceRelayer::BuildUrl()
7676
{
7777
const FString ChainId = SequenceSdk::GetChainId();
7878
const FString Name = FChainCollection::GetNetworkNameForUrl(ChainId);
79-
return FString::Printf(TEXT("https://dev-%s-relayer.sequence.app/rpc/Relayer"), *Name);
79+
return FString::Printf(TEXT("https://%s-relayer.sequence.app/rpc/Relayer"), *Name);
8080
}
8181

Plugins/SequencePlugin/Source/SequencePlugin/Public/EthAbi/android/x86/libethabi_bridge.a

Lines changed: 0 additions & 3 deletions
This file was deleted.

Plugins/SequencePlugin/Source/SequencePlugin/SequencePlugin.Build.cs

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,7 @@ public void AddEthAbiLibraries()
174174
else if (Target.Platform == UnrealTargetPlatform.Android)
175175
{
176176
string libDir = Path.Combine(EthAbiDirectory, "android");
177-
178-
if (Target.Architecture == UnrealArch.Arm64)
179-
{
180-
PublicAdditionalLibraries.Add(Path.Combine(libDir, "arm64", "libethabi_bridge.a"));
181-
}
182-
else if (Target.Architecture == UnrealArch.X64)
183-
{
184-
PublicAdditionalLibraries.Add(Path.Combine(libDir, "x86", "libethabi_bridge.a"));
185-
}
177+
PublicAdditionalLibraries.Add(Path.Combine(libDir, "arm64", "libethabi_bridge.a"));
186178
}
187179
}
188180
}//namespace

0 commit comments

Comments
 (0)