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
* Sends this transaction, packs the transaction then sends it as a deferred transaction
61
+
*
62
+
* @details Writes the symbol_code as a string to the provided char buffer
63
+
* @param sender_id - ID of sender
64
+
* @param payer - Account paying for RAM
65
+
* @param replace_existing - Defaults to false, if this is `0`/false then if the provided sender_id is already in use by an in-flight transaction from this contract, which will be a failing assert. If `1` then transaction will atomically cancel/replace the inflight transaction
66
+
*/
67
+
voidsend(constuint128_t& sender_id, name payer, bool replace_existing = false) const {
68
+
auto serialize = pack(*static_cast<const transaction*>(this));
* Sends this transaction, packs the transaction then sends it as a deferred transaction
119
-
*
120
-
* @details Writes the symbol_code as a string to the provided char buffer
121
-
* @param sender_id - ID of sender
122
-
* @param payer - Account paying for RAM
123
-
* @param replace_existing - Defaults to false, if this is `0`/false then if the provided sender_id is already in use by an in-flight transaction from this contract, which will be a failing assert. If `1` then transaction will atomically cancel/replace the inflight transaction
97
+
* Construct a new transaction
124
98
*/
125
-
voidsend(constuint128_t& sender_id, name payer, bool replace_existing = false) const {
0 commit comments