Skip to content

Commit

Permalink
fixup! feat: WithdrawReward on StakingAccountHolder
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc committed May 2, 2024
1 parent 63d6c64 commit d20bfc8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/boot/test/bootstrapTests/test-orchestration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,9 @@ test.serial('stakeAtom - repl-style', async t => {
const atomBrand = await EV(agoricNames).lookup('brand', 'ATOM');
const atomAmount = AmountMath.make(atomBrand, 10n);

const res = await EV(account).delegate('cosmosvaloper1test', atomAmount);
t.is(res, 'Success', 'delegate returns Success');
await t.notThrowsAsync(
EV(account).delegate('cosmosvaloper1test', atomAmount),
);
});

test.serial('stakeAtom - smart wallet', async t => {
Expand Down

0 comments on commit d20bfc8

Please sign in to comment.