mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 07:25:10 +00:00
Fix empty event in token-erc-20 example (#424)
Signed-off-by: Baran Kılıç <baran.kilic@boun.edu.tr>
This commit is contained in:
parent
b88ec9f4b4
commit
651f2235aa
1 changed files with 3 additions and 3 deletions
|
|
@ -23,9 +23,9 @@ type SmartContract struct {
|
|||
|
||||
// event provides an organized struct for emitting events
|
||||
type event struct {
|
||||
from string
|
||||
to string
|
||||
value int
|
||||
From string `json:"from"`
|
||||
To string `json:"to"`
|
||||
Value int `json:"value"`
|
||||
}
|
||||
|
||||
// Mint creates new tokens and adds them to minter's account balance
|
||||
|
|
|
|||
Loading…
Reference in a new issue