We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7522179 commit 92673f1Copy full SHA for 92673f1
src/fill-postgresql.cpp
@@ -1,5 +1,7 @@
1
// copyright defined in LICENSE.txt
2
3
+// todo: transaction order within blocks. affects wasm-ql
4
+
5
#include "abieos.hpp"
6
7
#include <boost/asio/connect.hpp>
@@ -54,7 +56,7 @@ enum class transaction_status : uint8_t {
54
56
soft_fail = 1, // objectively failed (not executed), error handler executed
55
57
hard_fail = 2, // objectively failed and error handler objectively failed thus no state change
58
delayed = 3, // transaction delayed/deferred/scheduled for future execution
- expired = 4, // transaction expired and storage space refuned to user
59
+ expired = 4, // transaction expired and storage space refunded to user
60
};
61
62
string to_string(transaction_status status) {
0 commit comments