ConductorGetters cosmetic change

This commit is contained in:
skojenov 2022-06-15 17:05:36 +00:00
parent a359703583
commit 69da2d5a0c
1 changed files with 1 additions and 5 deletions

View File

@ -45,11 +45,7 @@ contract ConductorGetters is ConductorState {
function contributorWallets(uint256 saleId_, uint16 chainId_) public view returns (bytes32) {
/// @dev Solana chainID == 1
if (chainId_ == 1) {
return solanaWallet(saleId_);
} else {
return contributorContracts(chainId_);
}
return chainId_ == 1? solanaWallet(saleId_): contributorContracts(chainId_);
}
function sales(uint256 saleId_) public view returns (ConductorStructs.Sale memory sale) {