mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Adjusts end-to-end tests to read-only array length.
This commit is contained in:
@@ -208,8 +208,8 @@ contract multiowned {
|
||||
pending.yetNeeded = m_required;
|
||||
// reset which owners have confirmed (none) - set our bitmap to 0.
|
||||
pending.ownersDone = 0;
|
||||
pending.index = m_pendingIndex.length++;
|
||||
m_pendingIndex[pending.index] = _operation;
|
||||
m_pendingIndex.push(_operation);
|
||||
pending.index = m_pendingIndex.length - 1;
|
||||
}
|
||||
// determine the bit to set for this owner.
|
||||
uint ownerIndexBit = 2**ownerIndex;
|
||||
|
||||
Reference in New Issue
Block a user