Skip to content

Commit

Permalink
dummy commit
Browse files Browse the repository at this point in the history
  • Loading branch information
chowbao authored and amishas157 committed Jul 12, 2024
1 parent 1dc94b5 commit 54154ca
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions internal/transform/test_variables_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,15 @@ var testAccount4Address = "GBVVRXLMNCJQW3IDDXC3X6XCH35B5Q7QXNMMFPENSOGUPQO7WO7HG
var testAccount4ID, _ = xdr.AddressToAccountId(testAccount4Address)
var testAccount4 = testAccount4ID.ToMuxedAccount()

var dummyEd25519 [32]byte
var testAccount5 = xdr.MuxedAccount{
Type: xdr.CryptoKeyTypeKeyTypeMuxedEd25519,
Med25519: &xdr.MuxedAccountMed25519{
Id: xdr.Uint64(1),
Ed25519: xdr.Uint256(dummyEd25519),
},
}

// a selection of hardcoded assets and their AssetOutput representations

var usdtAsset = xdr.Asset{
Expand Down
2 changes: 1 addition & 1 deletion internal/transform/transaction_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ func makeTransactionTestInput() (transaction []ingest.LedgerTransaction, history
Type: xdr.EnvelopeTypeEnvelopeTypeTxFeeBump,
FeeBump: &xdr.FeeBumpTransactionEnvelope{
Tx: xdr.FeeBumpTransaction{
FeeSource: testAccount3,
FeeSource: testAccount5,
Fee: 7200,
InnerTx: xdr.FeeBumpTransactionInnerTx{
Type: xdr.EnvelopeTypeEnvelopeTypeTx,
Expand Down

0 comments on commit 54154ca

Please sign in to comment.