69 lines
1.8 KiB
Go
69 lines
1.8 KiB
Go
package mempool_test
|
|
|
|
import (
|
|
"math/rand"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
|
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/ed25519"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
|
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth/tx"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
)
|
|
|
|
type encodingConfig struct {
|
|
InterfaceRegistry types.InterfaceRegistry
|
|
Codec codec.Codec
|
|
TxConfig client.TxConfig
|
|
Amino *codec.LegacyAmino
|
|
}
|
|
|
|
func createTestEncodingConfig() encodingConfig {
|
|
cdc := codec.NewLegacyAmino()
|
|
interfaceRegistry := types.NewInterfaceRegistry()
|
|
|
|
banktypes.RegisterInterfaces(interfaceRegistry)
|
|
cryptocodec.RegisterInterfaces(interfaceRegistry)
|
|
|
|
codec := codec.NewProtoCodec(interfaceRegistry)
|
|
|
|
return encodingConfig{
|
|
InterfaceRegistry: interfaceRegistry,
|
|
Codec: codec,
|
|
TxConfig: tx.NewTxConfig(codec, tx.DefaultSignModes),
|
|
Amino: cdc,
|
|
}
|
|
}
|
|
|
|
type Account struct {
|
|
PrivKey cryptotypes.PrivKey
|
|
PubKey cryptotypes.PubKey
|
|
Address sdk.AccAddress
|
|
ConsKey cryptotypes.PrivKey
|
|
}
|
|
|
|
func (acc Account) Equals(acc2 Account) bool {
|
|
return acc.Address.Equals(acc2.Address)
|
|
}
|
|
|
|
func RandomAccounts(r *rand.Rand, n int) []Account {
|
|
accs := make([]Account, n)
|
|
|
|
for i := 0; i < n; i++ {
|
|
pkSeed := make([]byte, 15)
|
|
r.Read(pkSeed)
|
|
|
|
accs[i].PrivKey = secp256k1.GenPrivKeyFromSecret(pkSeed)
|
|
accs[i].PubKey = accs[i].PrivKey.PubKey()
|
|
accs[i].Address = sdk.AccAddress(accs[i].PubKey.Address())
|
|
|
|
accs[i].ConsKey = ed25519.GenPrivKeyFromSecret(pkSeed)
|
|
}
|
|
|
|
return accs
|
|
}
|