Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions backend/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,15 @@ func InitDB() (*gorm.DB, error) {
&models.ComplianceAuditLog{},
// Batch transaction model (#106)
&models.BatchTransaction{},
// Event indexer models (#180)
&models.IndexedEvent{},
&models.EventCheckpoint{},
// GDPR export models (#178)
&models.ExportJob{},
// Dynamic fee config models (#177)
&models.FeeConfig{},
&models.FeeAuditLog{},
// Approval workflow models
&models.ApprovalWorkflow{},
&models.ApprovalStep{},
&models.ApprovalRequest{},
Expand Down
2 changes: 1 addition & 1 deletion backend/handlers/assets_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func TestTokenizeAssetRequestValidation(t *testing.T) {
}

req := validator.TokenizeAssetRequest{
IssuerAccount: "GD6WU5I6OIPRZ4A5I3G6JQ4RG5K27SQ26WPQ5W3MXV6QABBT3C7FIEIF",
IssuerAccount: "GABXYMNLGGTWAV7EQYHVWLQJ7MSAKBW3OX4J5B3UALQTVOUGX3HXBMEM",
Name: "Real Asset",
Symbol: "RWA1",
AssetType: "real_estate",
Expand Down
Loading
Loading