* Fixed a typo in the SQL statement
* Fixed additional two errors in the postgres database objects
(cherry picked from commit b610e5503e
)
Co-authored-by: Lijun Wang <83639177+lijunwangs@users.noreply.github.com>
This commit is contained in:
@ -47,7 +47,8 @@ Create TYPE "TransactionErrorCode" AS ENUM (
|
||||
'WouldExceedMaxAccountCostLimit',
|
||||
'WouldExceedMaxBlockCostLimit',
|
||||
'UnsupportedVersion',
|
||||
'InvalidWritableAccount'
|
||||
'InvalidWritableAccount',
|
||||
'WouldExceedMaxAccountDataCostLimit'
|
||||
);
|
||||
|
||||
CREATE TYPE "TransactionError" AS (
|
||||
@ -114,7 +115,7 @@ CREATE TYPE "TransactionMessage" AS (
|
||||
);
|
||||
|
||||
CREATE TYPE "TransactionMessageAddressTableLookup" AS (
|
||||
account_key: BYTEA[],
|
||||
account_key BYTEA,
|
||||
writable_indexes SMALLINT[],
|
||||
readonly_indexes SMALLINT[]
|
||||
);
|
||||
|
Reference in New Issue
Block a user