mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-22 09:35: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
|
// event provides an organized struct for emitting events
|
||||||
type event struct {
|
type event struct {
|
||||||
from string
|
From string `json:"from"`
|
||||||
to string
|
To string `json:"to"`
|
||||||
value int
|
Value int `json:"value"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mint creates new tokens and adds them to minter's account balance
|
// Mint creates new tokens and adds them to minter's account balance
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue