Skip to content

Commit

Permalink
Update src/Nethermind/Nethermind.Shutter/Config/IShutterConfig.cs
Browse files Browse the repository at this point in the history
Co-authored-by: Lukasz Rozmej <[email protected]>
  • Loading branch information
Marchhill and LukaszRozmej authored Oct 24, 2024
1 parent 0289521 commit 23c6573
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Nethermind/Nethermind.Shutter/Config/IShutterConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,9 @@ public void Validate(out Multiaddress[] bootnodeP2PAddresses)
{
bootnodeP2PAddresses = BootnodeP2PAddresses.Select(addr => Multiaddress.Decode(addr)).ToArray();
}
catch (NotSupportedException)
catch (NotSupportedException e)
{
throw new ArgumentException($"Could not decode Shutter bootnode p2p addresses.");
throw new ArgumentException($"Could not decode Shutter bootnode p2p addresses.", e);
}
}
}

0 comments on commit 23c6573

Please sign in to comment.