Skip to content

Commit

Permalink
Merge pull request #2359 from greymistcube/bump/lib9c-to-f1d89f59
Browse files Browse the repository at this point in the history
⬆️ Bump lib9c to f1d89f59
greymistcube authored Dec 15, 2023
2 parents 5bbece9 + 360ad5b commit 51160de
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Lib9c
Submodule Lib9c updated 271 files
Original file line number Diff line number Diff line change
@@ -722,7 +722,7 @@ public async Task MonsterCollect()
}
}";

ActionBase createAvatar = new CreateAvatar2
ActionBase createAvatar = new CreateAvatar
{
index = 0,
hair = 0,
@@ -768,7 +768,7 @@ public async Task ClaimMonsterCollectionReward()
}}
}}";

ActionBase createAvatar = new CreateAvatar2
ActionBase createAvatar = new CreateAvatar
{
index = 0,
hair = 0,
Original file line number Diff line number Diff line change
@@ -735,7 +735,7 @@ public async Task MonsterCollectionStatus_MonsterCollectionState_Null(bool miner
{
StandaloneContextFx.NineChroniclesNodeService.MinerPrivateKey = null;
}
var action = new CreateAvatar2
var action = new CreateAvatar
{
index = 0,
hair = 1,
@@ -786,7 +786,7 @@ public async Task Avatar()
var service = MakeNineChroniclesNodeService(userPrivateKey);
StandaloneContextFx.NineChroniclesNodeService = service;
StandaloneContextFx.BlockChain = service.Swarm!.BlockChain;
var action = new CreateAvatar2
var action = new CreateAvatar
{
index = 0,
hair = 1,
@@ -806,7 +806,7 @@ public async Task Avatar()
var avatarAddress = userAddress.Derive(
string.Format(
CultureInfo.InvariantCulture,
CreateAvatar2.DeriveFormat,
CreateAvatar.DeriveFormat,
0
)
);
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ public async Task SubscribeTx()
var observable = stream.Take(1);

var targetAction = new Grinding { AvatarAddress = new Address(), EquipmentIds = new List<Guid>() };
var nonTargetAction = new DailyReward6 { avatarAddress = new Address() };
var nonTargetAction = new DailyReward { avatarAddress = new Address() };

Task<ExecutionResult> task = Task.Run(async () => await observable);
var (block, transactions) = AppendBlock(targetAction, nonTargetAction);
Original file line number Diff line number Diff line change
@@ -128,7 +128,7 @@ public async Task GetTx()
data
);

var action = new CreateAvatar2
var action = new CreateAvatar
{
index = 0,
hair = 1,
@@ -165,7 +165,7 @@ public async Task CreateUnsignedTx(long? nonce)
PublicKey publicKey = privateKey.PublicKey;
Address signer = publicKey.Address;
long expectedNonce = nonce ?? _blockChain.GetNextTxNonce(signer);
ActionBase action = new CreateAvatar2
ActionBase action = new CreateAvatar
{
index = 0,
hair = 1,

0 comments on commit 51160de

Please sign in to comment.