From ef05fa31448d70b79143ec398e65f5ae3e858d81 Mon Sep 17 00:00:00 2001 From: klim0v Date: Fri, 6 Mar 2020 13:26:55 +0300 Subject: [PATCH] fix readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f3d6e4..519da66 100644 --- a/README.md +++ b/README.md @@ -426,7 +426,7 @@ You can transfer the transaction to the remaining addresses signedTx1, _ := tx.Sign(msigAddress, privateKey1) encode, _ := signedTx.Encode() // transfer encode transaction -signedTx1, _ = Decode(encode) +signedTx1, _ = transaction.Decode(encode) // and continue its signature by the remaining participants signedTx12, _ := decode.Sign(msigAddress, privateKey2) signedTx123, _ := decode.Sign(msigAddress, privateKey3)