Skip to content

Commit

Permalink
Merge pull request #120 from OffchainLabs/transactionReceipt
Browse files Browse the repository at this point in the history
TransactionReceipt implementation
  • Loading branch information
hkalodner authored Feb 12, 2020
2 parents 92ab646 + dff34c4 commit 3b20867
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/arb-provider-go/validatorProxy.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,12 @@ func (vp *ValidatorProxyImpl) CallMessage(contract common.Address, sender common
}
retBuf, err := hexutil.Decode(response.RawVal)
if err != nil {
log.Println("GetMessageResult error:", err)
log.Println("CallMessage error:", err)
return nil, err
}
retVal, err := value.UnmarshalValue(bytes.NewReader(retBuf))
if err != nil {
log.Println("ValProxy.GetMessageResult: UnmarshalValue returned error:", err)
log.Println("ValProxy.CallMessage: UnmarshalValue returned error:", err)
}
return retVal, err
}

0 comments on commit 3b20867

Please sign in to comment.