Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Solnet.Rpc.Builders;
using Solnet.Wallet;
using System.Numerics;
using System.Text.Json;
using Train.Solver.Blockchain.Solana.Programs.HTLCProgram;
using Train.Solver.Blockchain.Solana.Programs.HTLCProgram.Models;
using Train.Solver.Common.Extensions;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ await ExecuteActivityAsync(
(ISolanaBlockchainActivities x) => x.SimulateTransactionAsync(
new SolanaPublishTransactionRequest()
{
RawTx = composedTransaction.RawTx,
RawTx = signedTx,
Network= request.Network
}),
TemporalHelper.DefaultActivityOptions(request.Network.Type));
Expand All @@ -66,7 +66,7 @@ await ExecuteActivityAsync(
(ISolanaBlockchainActivities x) => x.PublishTransactionAsync(
new SolanaPublishTransactionRequest()
{
RawTx = composedTransaction.RawTx,
RawTx = signedTx,
Network = request.Network
}),
TemporalHelper.DefaultActivityOptions(request.Network.Type));
Expand Down