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

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Ethella committed Jun 15, 2022
1 parent ccf23c3 commit 1bee1cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion link.magic.unity.sdk/Scripts/Modules/AuthModule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ internal class LoginWithSmsConfiguration : BaseConfiguration

public LoginWithSmsConfiguration(string phoneNumber)
{
showUI = showUI;
this.phoneNumber = phoneNumber;
}
}
Expand Down
6 changes: 3 additions & 3 deletions link.magic.unity.sdk/Scripts/Relayer/UrlBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ internal class CustomNodeOptions : BaseOptions
[Serializable]
public class CustomNodeConfiguration
{
private int chainId;
private string rpcUrl;
[SerializeField] internal int chainId;
[SerializeField] internal string rpcUrl;

public CustomNodeConfiguration(string rpcUrl, int chainId)
{
Expand All @@ -64,7 +64,7 @@ public CustomNodeConfiguration(string rpcUrl, int chainId)
[Serializable]
public class EthNetworkConfiguration
{
private string network;
[SerializeField] internal string network;

public EthNetworkConfiguration(EthNetwork network)
{
Expand Down

0 comments on commit 1bee1cb

Please sign in to comment.