Clean lint

License: MIT
Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
This commit is contained in:
Jakub Sztandera 2019-07-29 23:24:52 +02:00
parent d2edad5d04
commit c2cb2c4184

View File

@ -23,7 +23,7 @@ type MultiSigActor struct{}
type MultiSigActorState struct { type MultiSigActorState struct {
Signers []address.Address Signers []address.Address
Required uint32 Required uint32
NextTxId uint64 NextTxID uint64
//TODO: make this map/sharray/whatever //TODO: make this map/sharray/whatever
Transactions []MTransaction Transactions []MTransaction
@ -171,8 +171,8 @@ func (msa MultiSigActor) Propose(act *types.Actor, vmctx types.VMContext,
return nil, err return nil, err
} }
txid := self.NextTxId txid := self.NextTxID
self.NextTxId++ self.NextTxID++
tx := MTransaction{ tx := MTransaction{
TxID: txid, TxID: txid,