diff --git a/src/neo-express/Node/ExpressNodeRpcPlugin.cs b/src/neo-express/Node/ExpressNodeRpcPlugin.cs index a905c258..aba574e9 100644 --- a/src/neo-express/Node/ExpressNodeRpcPlugin.cs +++ b/src/neo-express/Node/ExpressNodeRpcPlugin.cs @@ -407,7 +407,7 @@ private JObject GetClaimable(JArray @params) totalUnclaimed += unclaimed; var utxo = new JObject(); - utxo["txid"] = coin.Reference.PrevHash.ToString(); + utxo["txid"] = coin.Reference.PrevHash.ToString().Substring(2); utxo["n"] = coin.Reference.PrevIndex; utxo["start_height"] = startHeight; utxo["end_height"] = endHeight;