mirror of
https://github.com/eosswedenorg/thalos
synced 2026-07-04 12:03:41 +02:00
app/ship_processor.go: Ooops, fix a bug where we cast an ActionTrace to ActionReceiptV0 instead of the actual receipt :)
This commit is contained in:
parent
fd5ecf4268
commit
c82136aff0
1 changed files with 1 additions and 1 deletions
|
|
@ -172,7 +172,7 @@ func (processor *ShipProcessor) processBlock(block *ship.GetBlocksResultV0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if act_trace.Receipt != nil {
|
if act_trace.Receipt != nil {
|
||||||
receipt := actionTraceVar.Impl.(*ship.ActionReceiptV0)
|
receipt := act_trace.Receipt.Impl.(*ship.ActionReceiptV0)
|
||||||
act.Receipt = &message.ActionReceipt{
|
act.Receipt = &message.ActionReceipt{
|
||||||
Receiver: receipt.Receiver.String(),
|
Receiver: receipt.Receiver.String(),
|
||||||
ActDigest: receipt.ActDigest.String(),
|
ActDigest: receipt.ActDigest.String(),
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue