Skip to content

Commit 2e2e90b

Browse files
committed
Add missing getter functions in TreasuryStorage
1 parent fd491d7 commit 2e2e90b

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/TreasuryStorage.sol

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,10 +143,22 @@ contract TreasuryStorage {
143143
return _getStorage().governance;
144144
}
145145

146+
function reporter() public view returns (address) {
147+
return _getStorage().reporter;
148+
}
149+
150+
function allocator() public view returns (address) {
151+
return _getStorage().allocator;
152+
}
153+
146154
function assetManager() public view returns (address) {
147155
return _getStorage().assetManager;
148156
}
149157

158+
function insuranceVault() public view returns (address) {
159+
return _getStorage().insuranceVault;
160+
}
161+
150162
function governanceWarchest() public view returns (address) {
151163
return _getStorage().governanceWarchest;
152164
}

0 commit comments

Comments
 (0)