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