Skip to content
This repository was archived by the owner on Sep 4, 2024. It is now read-only.

Commit 1bee1cb

Browse files
committed
Fix warnings
1 parent ccf23c3 commit 1bee1cb

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

link.magic.unity.sdk/Scripts/Modules/AuthModule.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ internal class LoginWithSmsConfiguration : BaseConfiguration
5656

5757
public LoginWithSmsConfiguration(string phoneNumber)
5858
{
59-
showUI = showUI;
6059
this.phoneNumber = phoneNumber;
6160
}
6261
}

link.magic.unity.sdk/Scripts/Relayer/UrlBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ internal class CustomNodeOptions : BaseOptions
5151
[Serializable]
5252
public class CustomNodeConfiguration
5353
{
54-
private int chainId;
55-
private string rpcUrl;
54+
[SerializeField] internal int chainId;
55+
[SerializeField] internal string rpcUrl;
5656

5757
public CustomNodeConfiguration(string rpcUrl, int chainId)
5858
{
@@ -64,7 +64,7 @@ public CustomNodeConfiguration(string rpcUrl, int chainId)
6464
[Serializable]
6565
public class EthNetworkConfiguration
6666
{
67-
private string network;
67+
[SerializeField] internal string network;
6868

6969
public EthNetworkConfiguration(EthNetwork network)
7070
{

0 commit comments

Comments
 (0)