我正在尝试将资金转移记录存储在超级账本结构上。我在 go lang 中编写了链代码。当我在 initLedger 函数中添加数据时它工作正常。但是当我从 createTransfer(我将提供两个代码)等其他函数调用它时,它显示成功的交易,但是当我检索链数据时,它没有出现在其中。
传输结构
type Transfer struct {
TransferID string `json:"transferID"`
FromAccount string `json:"fromAccount"`
ToAccount string `json:"toAcount"`
Amount string `json:"amount"`
}
此函数将数据写入分类帐:当我直接在 initLedger 方法中调用它时它工作正常
func writeTransferToLedger(APIStub shim.ChaincodeStubInterface, transfers []Transfer) sc.Response {
for i := 0; i < len(transfers); i++ {
key := transfers[i].TransferID
chkBytes, _ := APIStub.GetState(key)
if chkBytes == nil {
asBytes, _ := json.Marshal(transfers[i])
err := APIStub.PutState(transfers[i].TransferID, asBytes)
if err != nil {
return shim.Error(err.Error())
}
} else {
msg := "Transfer already exist" + key + " Failure---------------"
return shim.Error(msg)
}
}
return shim.Success([]byte("Write to Ledger"))
}
在 createTransfer 函数中调用 writeToTransferLedger 方法:
func (s *SmartContract) createTransfer(APIStub shim.ChaincodeStubInterface, args []string) sc.Response {
if len(args) != 4 {
return shim.Error("Incorrect Number of arguments for transfer func, Expecting 4")
}
transfers := []Transfer{Transfer{TransferID: args[0], FromAccount: args[1], ToAccount: args[2], Amount: args[3]}}
writeTransferToLedger(APIStub, transfers)
return shim.Success([]byte("stored:" + args[0] + args[1] + args[2] + args[3]))
}
当我从nodesdk代码调用createTransfer时,它成功执行但是当我从链代码中检索数据时没有返回。
我希望它与 createTransfer 函数一起使用,因为它与 writeTransferToLedger 一起使用。
在 initLedger 方法中,我用给定的数据创建了传输结构,并调用了 writeTransferToLedger 函数代码如下:
transfer := []Transfer{
{TransferID: "1233", FromAccount: "US_John_Doe_123", ToAccount: "UK_Alice_456", Amount: "200"},
{TransferID: "231", FromAccount: "JPY_Alice_456", ToAccount: "UK_John_Doe", Amount: "3000"},
}
writeTransferToLedger(APIstub, transfer)