reference 1: documentation comments above modifier onlymanyowners(bytes32 _operation) in file zeppelin-solidity/contracts/ownership/Shareable.sol wants the operation hash to be intrinsic.
reference 2: function confirm(bytes32 _h) onlymanyowners(_h) returns (bool) confirms and checks that the multisig operation can be executed based on this hash (_h) that is computed in function execute(address _to, ... as:
// determine our operation hash.
_r = keccak256(msg.data, block.number);
Is it not possible for multisig operation transactions from different owners to straddle/fall-into different block numbers? is there an issue here?
Thanks