forked from TrueCloudLab/frostfs-contract
[#94] *: Fix parameter types in notification manifest
neo-go v0.95.2+ has strict notification type checker enabled by default. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
a2c985ae4b
commit
14382d701c
3 changed files with 8 additions and 8 deletions
|
@ -6,9 +6,9 @@ events:
|
|||
- name: container
|
||||
type: ByteArray
|
||||
- name: signature
|
||||
type: ByteArray
|
||||
type: Signature
|
||||
- name: publicKey
|
||||
type: ByteArray
|
||||
type: PublicKey
|
||||
- name: token
|
||||
type: ByteArray
|
||||
- name: containerDelete
|
||||
|
@ -16,7 +16,7 @@ events:
|
|||
- name: containerID
|
||||
type: ByteArray
|
||||
- name: signature
|
||||
type: ByteArray
|
||||
type: Signature
|
||||
- name: token
|
||||
type: ByteArray
|
||||
- name: setEACL
|
||||
|
@ -24,9 +24,9 @@ events:
|
|||
- name: eACL
|
||||
type: ByteArray
|
||||
- name: signature
|
||||
type: ByteArray
|
||||
type: Signature
|
||||
- name: publicKey
|
||||
type: ByteArray
|
||||
type: PublicKey
|
||||
- name: token
|
||||
type: ByteArray
|
||||
- name: StartEstimation
|
||||
|
|
|
@ -14,7 +14,7 @@ events:
|
|||
- name: Withdraw
|
||||
parameters:
|
||||
- name: user
|
||||
type: ByteArray
|
||||
type: Hash160
|
||||
- name: amount
|
||||
type: Integer
|
||||
- name: txHash
|
||||
|
@ -24,7 +24,7 @@ events:
|
|||
- name: id
|
||||
type: ByteArray
|
||||
- name: user
|
||||
type: ByteArray
|
||||
type: Hash160
|
||||
- name: amount
|
||||
type: Integer
|
||||
- name: lockAccount
|
||||
|
|
|
@ -10,7 +10,7 @@ events:
|
|||
- name: state
|
||||
type: Integer
|
||||
- name: publicKey
|
||||
type: ByteArray
|
||||
type: PublicKey
|
||||
- name: NewEpoch
|
||||
parameters:
|
||||
- name: epoch
|
||||
|
|
Loading…
Reference in a new issue