AntelopeIO/reference-contracts

Update action return value struct for `sellram` & `buyram`

Closed this issue · 0 comments

Update action return value struct:

  • action_return_sellram: bytes => bytes_sold
  • action_return_buyram: bytes => bytes_purchased

sellram

struct action_return_sellram {
      name account;
      asset quantity;
      int64_t bytes_sold;
      int64_t ram_bytes;
}

buyram

struct action_return_buyram {
      name payer;
      name receiver;
      asset quantity;
      int64_t bytes_purchased;
      int64_t ram_bytes;
};