This commit is contained in:
thomasmodeneis
2020-04-22 19:39:09 +02:00
committed by GitHub
parent 729e93f8a8
commit 2693718662
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ func HandleMsgEthereumTx(ctx sdk.Context, k Keeper, msg types.MsgEthereumTx) sdk
k.Bloom.Or(k.Bloom, returnData.Bloom)
// update transaction logs in KVStore
err = k.SetTransactionLogs(ctx, returnData.Logs, txHash[:])
err = k.SetTransactionLogs(ctx, returnData.Logs, txHash)
if err != nil {
return sdk.ResultFromError(err)
}
-1
View File
@@ -37,7 +37,6 @@ type (
Data TxData
// caches
hash atomic.Value
size atomic.Value
from atomic.Value
}