hi everyone, for some reason azure stopped executing code. Before everything worked, there were no changes. just took it and stopped working. Checked up by the local machine - everything is OK. when executing this part of the function code, azure just hangs and doesn't throw any error.
var receiptSending = await functionPermit.SendTransactionAndWaitForReceiptAsync( playerWeb3Account.Address, new HexBigInteger(estimatePermit.Value), new HexBigInteger(Nethereum.Web3.Web3.Convert.ToWei(gasPrice, UnitConversion.EthUnit.Gwei)), null, System.Threading.CancellationToken.None, functionPermitValues.ToArray() );
playerWeb3Account.Address,
new HexBigInteger(estimatePermit.Value),
new HexBigInteger(Nethereum.Web3.Web3.Convert.ToWei(gasPrice, UnitConversion.EthUnit.Gwei)),
null,
System.Threading.CancellationToken.None,
functionPermitValues.ToArray()
);
Any idea why it suddenly stopped working?