@@ -15,14 +15,14 @@ type FEVMTrace struct {
15
15
// Height message was executed at.
16
16
Height int64 `pg:",pk,notnull,use_zero"`
17
17
// StateRoot message was applied to.
18
- MessageStateRoot string `pg:",pk, notnull"`
18
+ MessageStateRoot string `pg:",notnull"`
19
19
// On-chain message triggering the message.
20
20
MessageCid string `pg:",pk,notnull"`
21
21
// On-chain message ETH transaction hash
22
22
TransactionHash string `pg:",notnull"`
23
23
24
24
// Cid of the trace.
25
- TraceCid string `pg:",pk, notnull"`
25
+ TraceCid string `pg:",notnull"`
26
26
// ETH Address of the sender.
27
27
From string `pg:",notnull"`
28
28
// ETH Address of the receiver.
@@ -47,7 +47,7 @@ type FEVMTrace struct {
47
47
// Returns value of message receipt encode in eth bytes.
48
48
Returns string `pg:",notnull"`
49
49
// Index indicating the order of the messages execution.
50
- Index uint64 `pg:",notnull,use_zero"`
50
+ Index uint64 `pg:",pk, notnull,use_zero"`
51
51
// Params contained in message.
52
52
ParsedParams string `pg:",type:jsonb"`
53
53
// Returns value of message receipt.
0 commit comments