Exemplo n.º 1
0
 /// <summary>Publish a signed block.</summary>
 /// <param name="beacon_block">The `BeaconBlock` object, as sent from the beacon node originally, but now with the signature field completed.</param>
 /// <returns>The block was validated successfully and has been broadcast. It has also been integrated into the beacon node's database.</returns>
 public Task Block2Async(BeaconBlock beacon_block)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public System.Threading.Tasks.Task Block2([Microsoft.AspNetCore.Mvc.FromQuery] BeaconBlock beacon_block)
 {
     return(_implementation.Block2Async(beacon_block));
 }