Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
havan committed Aug 21, 2024
1 parent 8cc290b commit 72466ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
7 changes: 0 additions & 7 deletions contracts/partner/PartnerConfiguration.sol
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ abstract contract PartnerConfiguration is Initializable {
EnumerableSet.AddressSet _supportedTokens; // Supported on-chain token for payment
}

/**
* @dev Purpose of the public key. Currently we only have one.
*/
// enum PublicKeyUseType {
// EncryptPrivateData
// }

/// @custom:storage-location erc7201:camino.messenger.storage.PartnerConfiguration
struct PartnerConfigurationStorage {
// Set of supported service hashes
Expand Down
4 changes: 2 additions & 2 deletions test/utils/fixtures.js
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ async function deployBookingTokenWithNullUSDFixture() {

// Fund NullUSD to the CM accounts
const fundAmount = ethers.parseEther("1000");
nullUSD.transfer(supplierCMAccount.getAddress(), fundAmount);
nullUSD.transfer(distributorCMAccount.getAddress(), fundAmount);
await nullUSD.transfer(await supplierCMAccount.getAddress(), fundAmount);
await nullUSD.transfer(await distributorCMAccount.getAddress(), fundAmount);

return { cmAccountManager, supplierCMAccount, distributorCMAccount, bookingToken, prefundAmount, nullUSD };
}
Expand Down

0 comments on commit 72466ab

Please sign in to comment.