You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the work on keep-network/keep-core#3427, we noticed a problem with a generated contract binding that maps the WalletRegistry contract. That contract defines the following function:
function isDkgResultValid(DKG.Result calldata result) external view returns (bool, string memory)
which is covered by the WalletRegistry.go binding as:
The isDkgResultValid is package-private and contains anonymous fields that can't be accessed outside. The only possible workaround is by using Go's reflection. This should be improved by making the returned values accessible.
The text was updated successfully, but these errors were encountered:
During the work on keep-network/keep-core#3427, we noticed a problem with a generated contract binding that maps the
WalletRegistry
contract. That contract defines the following function:which is covered by the
WalletRegistry.go
binding as:The
isDkgResultValid
is package-private and contains anonymous fields that can't be accessed outside. The only possible workaround is by using Go's reflection. This should be improved by making the returned values accessible.The text was updated successfully, but these errors were encountered: