Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. // Custom transaction: invoice_transaction.js
  2. async prepare(store) {
  3. await super.prepare(store);
  4. }
  5.  
  6. // Base transaction implementation: base_transaction.ts
  7. public async prepare(store: StateStorePrepare): Promise<void> {
  8. await store.account.cache([
  9. {
  10. address: this.senderId,
  11. },
  12. ]);
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement