@@ -713,11 +713,6 @@ public static FriendMessage addMessageWithType(byte[] id, FriendMessageType type
713713 return friend_message ;
714714 }
715715
716- public override void onSignerSolutionFound ( )
717- {
718- throw new NotImplementedException ( ) ;
719- }
720-
721716 static public Transaction sendTransaction ( Address address , IxiNumber amount )
722717 {
723718 // TODO add support for sending funds from multiple addreses automatically based on remaining balance
@@ -729,7 +724,7 @@ static public Transaction sendTransaction(Address address, IxiNumber amount)
729724 static public ( Transaction transaction , List < Address > relayNodeAddresses ) prepareTransactionFrom ( Address fromAddress , Address toAddress , IxiNumber amount )
730725 {
731726 IxiNumber fee = ConsensusConfig . forceTransactionPrice ;
732- SortedDictionary < Address , ToEntry > to_list = new ( new AddressComparer ( ) ) ;
727+ Dictionary < Address , ToEntry > to_list = new ( new AddressComparer ( ) ) ;
733728 Balance address_balance = IxianHandler . balances . FirstOrDefault ( addr => addr . address . addressNoChecksum . SequenceEqual ( fromAddress . addressNoChecksum ) ) ;
734729 Address pubKey = new ( IxianHandler . getWalletStorage ( ) . getPrimaryPublicKey ( ) ) ;
735730
@@ -739,7 +734,7 @@ static public (Transaction transaction, List<Address> relayNodeAddresses) prepar
739734 return ( null , null ) ;
740735 }
741736
742- SortedDictionary < byte [ ] , IxiNumber > from_list = new ( new ByteArrayComparer ( ) )
737+ Dictionary < byte [ ] , IxiNumber > from_list = new ( new ByteArrayComparer ( ) )
743738 {
744739 { IxianHandler . getWalletStorage ( ) . getAddress ( fromAddress ) . nonce , amount }
745740 } ;
0 commit comments