You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zcf.mintGains() allows the seat parameter to be defaulted, but doesn't currently fill it in when missing.
// TODO unimplementedassert(zcfSeat!==undefined,details`On demand seat creation not yet implemented`,);
Description of the Design
use a mechanism like makeEmptySeatKit() (or maybe use makeEmptySeatKit()) to fill in a seat when it's not present
Security Considerations
This doesn't add extra vulnerabilities to Zoe, but it's an extra mechanism in contracts that makes it possible to create a seat and then lose track of it, losing assets.
Test Plan
add a test case in test-zcf.js
The text was updated successfully, but these errors were encountered:
What is the Problem Being Solved?
zcf.mintGains()
allows the seat parameter to be defaulted, but doesn't currently fill it in when missing.Description of the Design
use a mechanism like
makeEmptySeatKit()
(or maybe usemakeEmptySeatKit()
) to fill in a seat when it's not presentSecurity Considerations
This doesn't add extra vulnerabilities to Zoe, but it's an extra mechanism in contracts that makes it possible to create a seat and then lose track of it, losing assets.
Test Plan
add a test case in
test-zcf.js
The text was updated successfully, but these errors were encountered: