24 lines
969 B
TypeScript
24 lines
969 B
TypeScript
import { expect } from '@0x/contracts-test-utils';
|
|
import { RevertError } from '@0x/utils';
|
|
import * as _ from 'lodash';
|
|
|
|
import { PoolOperatorActor } from './pool_operator_actor';
|
|
|
|
export class MakerActor extends PoolOperatorActor {
|
|
public async joinStakingPoolAsMakerAsync(poolId: string, revertError?: RevertError): Promise<void> {
|
|
// add maker
|
|
const txReceiptPromise = this._stakingApiWrapper.stakingContract.joinStakingPoolAsMaker.awaitTransactionSuccessAsync(
|
|
poolId,
|
|
{ from: this.getOwner() },
|
|
);
|
|
if (revertError !== undefined) {
|
|
await expect(txReceiptPromise).to.revertWith(revertError);
|
|
return;
|
|
}
|
|
await txReceiptPromise;
|
|
// check the pool id of the maker
|
|
const poolIdOfMaker = await this._stakingApiWrapper.stakingContract.poolIdByMaker.callAsync(this.getOwner());
|
|
expect(poolIdOfMaker, 'pool id of maker').to.be.equal(poolId);
|
|
}
|
|
}
|