Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package txs
import (
"fmt"
"io"
acm "github.com/hyperledger/burrow/account"
"github.com/hyperledger/burrow/account/state"
"github.com/hyperledger/burrow/permission/snatives"
"github.com/tendermint/go-wire"
)
type PermissionsTx struct {
Input *TxInput
PermArgs snatives.PermArgs
txHashMemoizer
}
var _ Tx = &PermissionsTx{}
func NewPermissionsTx(st state.AccountGetter, from acm.PublicKey, args snatives.PermArgs) (*PermissionsTx, error) {
addr := from.Address()
acc, err := st.GetAccount(addr)
if err != nil {
return nil, err
}
if acc == nil {
return nil, fmt.Errorf("Invalid address %s from pubkey %s", addr, from)
}
sequence := acc.Sequence() + 1
return NewPermissionsTxWithSequence(from, args, sequence), nil
}
func NewPermissionsTxWithSequence(from acm.PublicKey, args snatives.PermArgs, sequence uint64) *PermissionsTx {
input := &TxInput{
Address: from.Address(),
Amount: 1, // NOTE: amounts can't be 0 ...
Sequence: sequence,
PublicKey: from,
}
return &PermissionsTx{
Input: input,
PermArgs: args,
}
}
func (tx *PermissionsTx) Sign(chainID string, signingAccounts ...acm.AddressableSigner) error {
if len(signingAccounts) != 1 {
return fmt.Errorf("PermissionsTx expects a single AddressableSigner for its single Input but %v were provieded",
len(signingAccounts))
}
var err error
tx.Input.PublicKey = signingAccounts[0].PublicKey()
tx.Input.Signature, err = acm.ChainSign(signingAccounts[0], chainID, tx)
if err != nil {
return fmt.Errorf("could not sign %v: %v", tx, err)
}
return nil
func (tx *PermissionsTx) WriteSignBytes(chainID string, w io.Writer, n *int, err *error) {
wire.WriteTo([]byte(fmt.Sprintf(`{"chain_id":%s`, jsonEscape(chainID))), w, n, err)
wire.WriteTo([]byte(fmt.Sprintf(`,"tx":[%v,{"args":"`, TxTypePermissions)), w, n, err)
wire.WriteJSON(&tx.PermArgs, w, n, err)
wire.WriteTo([]byte(`","input":`), w, n, err)
tx.Input.WriteSignBytes(w, n, err)
wire.WriteTo([]byte(`}]}`), w, n, err)
}
func (tx *PermissionsTx) GetInputs() []TxInput {
return []TxInput{*tx.Input}
}
func (tx *PermissionsTx) String() string {
return fmt.Sprintf("PermissionsTx{%v -> %v}", tx.Input, tx.PermArgs)
}
func (tx *PermissionsTx) Hash(chainID string) []byte {
return tx.txHashMemoizer.hash(chainID, tx)
}