Smart contracts for the Besu permissioning system
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
permissioning-smart-contracts/contracts/NodeRulesProxy.sol

14 lines
408 B

pragma solidity >=0.4.22 <0.6.0;
interface NodeRulesProxy {
function connectionAllowed(
bytes32 sourceEnodeHigh,
bytes32 sourceEnodeLow,
bytes16 sourceEnodeIp,
uint16 sourceEnodePort,
bytes32 destinationEnodeHigh,
bytes32 destinationEnodeLow,
bytes16 destinationEnodeIp,
uint16 destinationEnodePort
) external view returns (bytes32);
}