diff --git a/model/fevm/transaction.go b/model/fevm/transaction.go index 91c7faba..c7c7db9a 100644 --- a/model/fevm/transaction.go +++ b/model/fevm/transaction.go @@ -53,11 +53,11 @@ type FEVMTransaction struct { FromFilecoinAddress string `pg:",notnull"` // Filecoin Address of the receiver. ToFilecoinAddress string `pg:",notnull"` - // Human-readable identifier of receiver (To). + // Human-readable identifier of sender (From). FromActorName string `pg:",notnull"` - // On-chain message triggering the message. + // Human-readable identifier of receiver (To). ToActorName string `pg:",notnull"` - // Human-readable identifier of sender (From). + // On-chain message triggering the message. MessageCid string `pg:",pk,notnull"` }