Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,11 @@ describe('Identity State Transitions', function describeIdentityStateTransitions

// Withdraw credits - not specifying toAddress means withdrawal
// will be to the identity's registered withdrawal address
// Minimum is 190000 credits, maximum is 50000000000000
// Minimum is 1000000 credits (raised from 190000 in protocol v12),
// maximum is 50000000000000
const remainingBalance = await client.identityCreditWithdrawal({
identity,
amount: 200000n, // Must be >= 190000
amount: 1000000n, // Must be >= 1000000
coreFeePerByte: 1,
signer,
});
Expand Down
Loading